initial commit

This commit is contained in:
NudeDude 2017-11-05 11:08:13 +01:00
parent 60d59f78dd
commit ddc2195667
4 changed files with 13 additions and 10 deletions

View File

@ -56,7 +56,6 @@ public class LoginActivity extends Activity //Activity
private void linkTwitter() {
RegisterAccount account = new RegisterAccount(con);
account.execute("");
// linkButton.setVisibility(Button.INVISIBLE);
}
private void verifier() {
@ -73,8 +72,6 @@ public class LoginActivity extends Activity //Activity
private void login(){
setTheme(R.style.AppTheme);
setContentView(R.layout.main_layout);
tabhost = (TabHost)findViewById(R.id.tabHost);
tabhost.setup();

View File

@ -33,11 +33,19 @@
android:elevation="1dp"
android:orientation="vertical">
<ListView
android:id="@+id/timelinelist"
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/timeline_refresh"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true" android:focusable="true"/>
android:layout_height="wrap_content">
<ListView
android:id="@+id/timelinelist"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:focusable="true" />
</android.support.v4.widget.SwipeRefreshLayout>
</LinearLayout>
<LinearLayout

View File

@ -6,6 +6,4 @@
<string name="action_sign_in">Login</string>
<string name="error_field_required">This field is required</string>
<string name="profile_image">profilbild</string>
</resources>

View File

@ -1,7 +1,7 @@
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Base.Theme.AppCompat.Light">
<style name="AppTheme">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>