| Index: samples/github/android/GithubSample/app/src/main/res/layout/login_layout.xml
|
| diff --git a/samples/github/android/GithubSample/app/src/main/res/layout/login_layout.xml b/samples/github/android/GithubSample/app/src/main/res/layout/login_layout.xml
|
| deleted file mode 100644
|
| index 8fc30dff010c0bb7a2e1439e70d3ec1cf044b03a..0000000000000000000000000000000000000000
|
| --- a/samples/github/android/GithubSample/app/src/main/res/layout/login_layout.xml
|
| +++ /dev/null
|
| @@ -1,66 +0,0 @@
|
| -<?xml version="1.0" encoding="utf-8"?>
|
| -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
| - android:layout_width="match_parent" android:layout_height="match_parent">
|
| -
|
| - <android.support.v7.widget.CardView
|
| - xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
| - android:layout_width="wrap_content"
|
| - android:layout_height="match_parent"
|
| - card_view:cardUseCompatPadding="true"
|
| - card_view:cardCornerRadius="1dp"
|
| - card_view:cardElevation="3dp"
|
| - android:paddingLeft="10dp">
|
| -
|
| - <RelativeLayout
|
| - xmlns:android="http://schemas.android.com/apk/res/android"
|
| - android:layout_width="match_parent"
|
| - android:layout_height="match_parent"
|
| - android:padding="15dp">
|
| -
|
| - <TextView
|
| - android:id="@+id/login_title"
|
| - android:layout_width="match_parent"
|
| - android:layout_height="wrap_content"
|
| - android:gravity="center"
|
| - android:padding="10dp"
|
| - android:textAppearance="@android:style/TextAppearance.Material.Title"
|
| - android:textColor="@color/accent_material_light"
|
| - android:text="@string/login_title"/>
|
| -
|
| - <EditText
|
| - android:id="@+id/username"
|
| - android:layout_width="match_parent"
|
| - android:layout_height="wrap_content"
|
| - android:hint="@string/hint_username"
|
| - android:layout_marginTop="80dp"
|
| - android:textAppearance="@android:style/TextAppearance.Material.Body1"
|
| - android:inputType="text"/>
|
| -
|
| - <EditText
|
| - android:id="@+id/password"
|
| - android:layout_width="match_parent"
|
| - android:layout_height="wrap_content"
|
| - android:layout_alignLeft="@+id/username"
|
| - android:layout_below="@+id/username"
|
| - android:layout_marginTop="30dp"
|
| - android:layout_marginBottom="30dp"
|
| - android:hint="@string/hint_password"
|
| - android:textAppearance="@android:style/TextAppearance.Material.Body1"
|
| - android:inputType="textPassword"/>
|
| -
|
| - <Button
|
| - android:id="@+id/loginout_button"
|
| - android:layout_width="match_parent"
|
| - android:layout_height="wrap_content"
|
| - android:layout_alignLeft="@+id/password"
|
| - android:layout_alignParentBottom="true"
|
| - android:text="@string/login_button"
|
| - android:background="@color/accent_material_light"
|
| - android:textColor="#FFFFFF"
|
| - android:textAppearance="@android:style/TextAppearance.Material.Button"
|
| - android:onClick="toggleLogin"/>
|
| - </RelativeLayout>
|
| -
|
| - </android.support.v7.widget.CardView>
|
| -
|
| -</LinearLayout>
|
|
|