Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(874)

Unified Diff: samples/github/android/GithubSample/app/src/main/res/layout/login_layout.xml

Issue 2035023003: Remove service-compiler related code. (Closed) Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698