diff options
author | Matthew Wong <wongma@protonmail.ch> | 2015-08-16 15:01:32 -0400 |
---|---|---|
committer | Matthew Wong <wongma@protonmail.ch> | 2015-08-16 15:01:32 -0400 |
commit | ce59194228dcc358168332e088eedce2a3635b89 (patch) | |
tree | b54063449ee22556b8333707fe06c4d78ac4021e /app/src/main/res/layout | |
parent | 640f6ff9bd2645382323b9375c57af11e5931d3b (diff) |
More instructions/information
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/autofill_instructions.xml | 63 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_autofill.xml | 8 |
2 files changed, 67 insertions, 4 deletions
diff --git a/app/src/main/res/layout/autofill_instructions.xml b/app/src/main/res/layout/autofill_instructions.xml new file mode 100644 index 00000000..82ad16d1 --- /dev/null +++ b/app/src/main/res/layout/autofill_instructions.xml @@ -0,0 +1,63 @@ +<?xml version="1.0" encoding="utf-8"?> +<ScrollView + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_height="match_parent" + android:layout_width="match_parent"> + +<LinearLayout android:orientation="vertical" + android:layout_height="fill_parent" + android:layout_width="fill_parent" + android:paddingLeft="24dp" + android:paddingRight="24dp" + android:paddingTop="20dp" + android:paddingBottom="20dp"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textSize="@dimen/abc_text_size_menu_material" + android:text="@string/pref_autofill_enable_msg" + android:id="@+id/textView"/> + + <ImageView + android:layout_width="match_parent" + android:id="@+id/imageView" + android:src="@drawable/autofill_ins_1" + android:layout_marginTop="8dp" + android:layout_marginBottom="8dp" + android:layout_height="wrap_content" + android:adjustViewBounds="true"/> + + <ImageView + android:layout_width="match_parent" + android:id="@+id/imageView2" + android:src="@drawable/autofill_ins_2" + android:layout_marginBottom="8dp" + android:layout_height="wrap_content" + android:adjustViewBounds="true"/> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textSize="@dimen/abc_text_size_menu_material" + android:text="@string/pref_autofill_enable_msg2" + android:id="@+id/textView3"/> + + <ImageView + android:layout_width="match_parent" + android:layout_height="114dp" + android:id="@+id/imageView3" + android:src="@drawable/autofill_ins_3" + android:layout_marginTop="8dp" + android:layout_marginBottom="8dp"/> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textSize="@dimen/abc_text_size_menu_material" + android:text="@string/pref_autofill_enable_msg3" + android:id="@+id/textView4"/> + + +</LinearLayout> +</ScrollView>
\ No newline at end of file diff --git a/app/src/main/res/layout/fragment_autofill.xml b/app/src/main/res/layout/fragment_autofill.xml index af2b7017..a5b1ac90 100644 --- a/app/src/main/res/layout/fragment_autofill.xml +++ b/app/src/main/res/layout/fragment_autofill.xml @@ -3,10 +3,10 @@ android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" - android:paddingBottom="@dimen/activity_vertical_margin" - android:paddingLeft="@dimen/activity_horizontal_margin" - android:paddingRight="@dimen/activity_horizontal_margin" - android:paddingTop="@dimen/activity_vertical_margin"> + android:paddingLeft="24dp" + android:paddingRight="24dp" + android:paddingTop="20dp" + android:paddingBottom="20dp"> <RadioGroup android:layout_width="match_parent" |