diff options
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/activity_login.xml | 79 | ||||
-rw-r--r-- | app/src/main/res/layout/activity_main.xml | 74 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_main.xml | 23 |
3 files changed, 0 insertions, 176 deletions
diff --git a/app/src/main/res/layout/activity_login.xml b/app/src/main/res/layout/activity_login.xml deleted file mode 100644 index 9e7d237..0000000 --- a/app/src/main/res/layout/activity_login.xml +++ /dev/null @@ -1,79 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:tools="http://schemas.android.com/tools" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:gravity="center_vertical|center_horizontal" - android:orientation="vertical" - android:paddingBottom="@dimen/activity_vertical_margin" - android:paddingLeft="@dimen/activity_horizontal_margin" - android:paddingRight="@dimen/activity_horizontal_margin" - android:paddingTop="@dimen/activity_vertical_margin" - tools:context=".LoginActivity"> - - <!-- Login progress --> - <ProgressBar - android:id="@+id/login_progress" - style="?android:attr/progressBarStyleLarge" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginBottom="8dp" - android:visibility="gone" /> - - <ScrollView - android:id="@+id/login_form" - android:layout_width="match_parent" - android:layout_height="wrap_content"> - - <LinearLayout - android:id="@+id/email_login_form" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:orientation="vertical"> - - <android.support.design.widget.TextInputLayout - android:layout_width="match_parent" - android:layout_height="wrap_content"> - - <AutoCompleteTextView - android:id="@+id/email" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:hint="@string/prompt_email" - android:inputType="textEmailAddress" - android:maxLines="1" - android:singleLine="true" /> - - </android.support.design.widget.TextInputLayout> - - <android.support.design.widget.TextInputLayout - android:layout_width="match_parent" - android:layout_height="wrap_content"> - - <EditText - android:id="@+id/password" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:hint="@string/prompt_password" - android:imeActionId="6" - android:imeActionLabel="@string/action_sign_in_short" - android:imeOptions="actionUnspecified" - android:inputType="textPassword" - android:maxLines="1" - android:singleLine="true" /> - - </android.support.design.widget.TextInputLayout> - - <Button - android:id="@+id/email_sign_in_button" - style="@style/Widget.AppCompat.Button.Colored" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_marginTop="16dp" - android:background="@drawable/gradient_button" - android:text="@string/action_sign_in" - android:textStyle="bold" /> - - </LinearLayout> - </ScrollView> -</LinearLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml deleted file mode 100644 index 0e2a766..0000000 --- a/app/src/main/res/layout/activity_main.xml +++ /dev/null @@ -1,74 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:app="http://schemas.android.com/apk/res-auto" - xmlns:tools="http://schemas.android.com/tools" - android:id="@+id/main_content" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:fitsSystemWindows="true" - tools:context=".MainActivity"> - - <android.support.design.widget.AppBarLayout - android:id="@+id/appbar" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:paddingTop="@dimen/appbar_padding_top" - android:theme="@style/AppTheme.AppBarOverlay"> - - <android.support.v7.widget.Toolbar - android:id="@+id/toolbar" - android:layout_width="match_parent" - android:layout_height="?attr/actionBarSize" - android:layout_weight="1" - android:background="?attr/colorPrimary" - app:layout_scrollFlags="scroll|enterAlways" - app:popupTheme="@style/AppTheme.PopupOverlay" - app:theme="@style/ActionBarThemeOverlay" - app:title="@string/app_name"> - - </android.support.v7.widget.Toolbar> - - <android.support.design.widget.TabLayout - android:id="@+id/tabs" - android:layout_width="match_parent" - android:layout_height="wrap_content" - app:tabMode="fixed" - app:tabSelectedTextColor="@color/tabSelectedTextColor" - app:tabTextColor="@color/tabTextColor"> - - <android.support.design.widget.TabItem - android:id="@+id/tabItem" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/tab_text_1" /> - - <android.support.design.widget.TabItem - android:id="@+id/tabItem2" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/tab_text_2" /> - - <android.support.design.widget.TabItem - android:id="@+id/tabItem3" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/tab_text_3" /> - - </android.support.design.widget.TabLayout> - </android.support.design.widget.AppBarLayout> - - <android.support.v4.view.ViewPager - android:id="@+id/container" - android:layout_width="match_parent" - android:layout_height="match_parent" - app:layout_behavior="@string/appbar_scrolling_view_behavior" /> - - <android.support.design.widget.FloatingActionButton - android:id="@+id/fab" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_gravity="end|bottom" - android:layout_margin="@dimen/fab_margin" - app:srcCompat="@android:drawable/ic_secure" /> - -</android.support.design.widget.CoordinatorLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/fragment_main.xml b/app/src/main/res/layout/fragment_main.xml deleted file mode 100644 index 108217e..0000000 --- a/app/src/main/res/layout/fragment_main.xml +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:app="http://schemas.android.com/apk/res-auto" - xmlns:tools="http://schemas.android.com/tools" - android:id="@+id/constraintLayout" - android:layout_width="match_parent" - android:layout_height="match_parent" - tools:context=".MainActivity$PlaceholderFragment"> - - <TextView - android:id="@+id/section_label" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginBottom="@dimen/activity_vertical_margin" - android:layout_marginEnd="@dimen/activity_horizontal_margin" - android:layout_marginStart="@dimen/activity_horizontal_margin" - android:layout_marginTop="@dimen/activity_vertical_margin" - app:layout_constraintLeft_toLeftOf="parent" - app:layout_constraintTop_toTopOf="@+id/constraintLayout" - tools:layout_constraintLeft_creator="1" - tools:layout_constraintTop_creator="1" /> - -</android.support.constraint.ConstraintLayout>
\ No newline at end of file |