diff options
Diffstat (limited to 'main/res/layout/text_preference.xml')
| -rw-r--r-- | main/res/layout/text_preference.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/main/res/layout/text_preference.xml b/main/res/layout/text_preference.xml new file mode 100644 index 0000000..818b2f3 --- /dev/null +++ b/main/res/layout/text_preference.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:paddingLeft="16dp" + android:paddingRight="16dp" + android:orientation="vertical" > + + <TextView + android:id="@+id/textPreferenceText" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceSmall" /> + <TextView + android:id="@+id/textPreferenceSummary" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:paddingTop="8dp" + android:visibility="gone" + android:textAppearance="?android:attr/textAppearanceSmall" /> + +</LinearLayout> |
