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

Unified Diff: tools/android/kerberos/SpnegoAuthenticator/res/layout/activity_account_authenticator.xml

Issue 1416443003: [tool] SpnegoAuth: add multi account, credential confirmation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments: Refactor AccountData, get rid of statics Created 5 years, 2 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: tools/android/kerberos/SpnegoAuthenticator/res/layout/activity_account_authenticator.xml
diff --git a/tools/android/kerberos/SpnegoAuthenticator/res/layout/activity_account_authenticator.xml b/tools/android/kerberos/SpnegoAuthenticator/res/layout/activity_account_authenticator.xml
new file mode 100644
index 0000000000000000000000000000000000000000..275384d101e8553eb8dacbbac71fe75fd81ddafb
--- /dev/null
+++ b/tools/android/kerberos/SpnegoAuthenticator/res/layout/activity_account_authenticator.xml
@@ -0,0 +1,53 @@
+<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:paddingTop="16dp"
+ android:paddingBottom="16dp"
+ android:paddingStart="16dp"
+ android:paddingEnd="16dp"
+ android:gravity="center_horizontal"
+ android:orientation="vertical"
+ android:theme="@android:style/Theme.Material"
+ tools:context=".SpnegoAuthenticatorActivity">
+
+ <ScrollView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <LinearLayout
+ android:id="@+id/login_form"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical">
+
+ <Button
+ android:id="@+id/sign_in_button_1"
+ style="?android:textAppearanceSmall"
+ android:textStyle="bold"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="16dp"
+ android:text="@string/action_sign_in_1"/>
+
+ <Button
+ android:id="@+id/sign_in_button_2"
+ style="?android:textAppearanceSmall"
+ android:textStyle="bold"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="16dp"
+ android:text="@string/action_sign_in_2"/>
+
+ <Button
+ android:id="@+id/confirm_credentials_button"
+ style="?android:textAppearanceSmall"
+ android:textStyle="bold"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="16dp"
+ android:text="@string/action_confirm_credentials"/>
+
+ </LinearLayout>
+ </ScrollView>
+</LinearLayout>

Powered by Google App Engine
This is Rietveld 408576698