OLD | NEW |
(Empty) | |
| 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 xmlns:tools="http://schemas.android.com/tools" |
| 3 android:layout_width="match_parent" |
| 4 android:layout_height="match_parent" |
| 5 android:paddingTop="16dp" |
| 6 android:paddingBottom="16dp" |
| 7 android:paddingStart="16dp" |
| 8 android:paddingEnd="16dp" |
| 9 android:gravity="center_horizontal" |
| 10 android:orientation="vertical" |
| 11 android:theme="@android:style/Theme.Material" |
| 12 tools:context=".SpnegoAuthenticatorActivity"> |
| 13 |
| 14 <ScrollView |
| 15 android:layout_width="match_parent" |
| 16 android:layout_height="match_parent"> |
| 17 |
| 18 <LinearLayout |
| 19 android:id="@+id/login_form" |
| 20 android:layout_width="match_parent" |
| 21 android:layout_height="wrap_content" |
| 22 android:orientation="vertical"> |
| 23 |
| 24 <Button |
| 25 android:id="@+id/sign_in_button_1" |
| 26 style="?android:textAppearanceSmall" |
| 27 android:textStyle="bold" |
| 28 android:layout_width="match_parent" |
| 29 android:layout_height="wrap_content" |
| 30 android:layout_marginTop="16dp" |
| 31 android:text="@string/action_sign_in_1"/> |
| 32 |
| 33 <Button |
| 34 android:id="@+id/sign_in_button_2" |
| 35 style="?android:textAppearanceSmall" |
| 36 android:textStyle="bold" |
| 37 android:layout_width="match_parent" |
| 38 android:layout_height="wrap_content" |
| 39 android:layout_marginTop="16dp" |
| 40 android:text="@string/action_sign_in_2"/> |
| 41 |
| 42 <Button |
| 43 android:id="@+id/confirm_credentials_button" |
| 44 style="?android:textAppearanceSmall" |
| 45 android:textStyle="bold" |
| 46 android:layout_width="match_parent" |
| 47 android:layout_height="wrap_content" |
| 48 android:layout_marginTop="16dp" |
| 49 android:text="@string/action_confirm_credentials"/> |
| 50 |
| 51 </LinearLayout> |
| 52 </ScrollView> |
| 53 </LinearLayout> |
OLD | NEW |