diff options
Diffstat (limited to 'res/layout/preferences.xml')
-rw-r--r-- | res/layout/preferences.xml | 41 |
1 files changed, 39 insertions, 2 deletions
diff --git a/res/layout/preferences.xml b/res/layout/preferences.xml index 350e965b4..81690987a 100644 --- a/res/layout/preferences.xml +++ b/res/layout/preferences.xml @@ -28,10 +28,47 @@ android:layout_marginRight="?android:attr/scrollbarSize"> <TextView + android:id="@+id/section_general" + android:text="@string/section_general" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceLarge"/> + + <View + android:layout_width="fill_parent" + android:layout_height="1dip" + android:background="?android:attr/listDivider" + android:layout_marginBottom="5dip"/> + + <LinearLayout + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:orientation="horizontal"> + + <TextView + android:id="@+id/label_passPhraseCache" + android:text="@string/label_passPhraseCache" + android:textAppearance="?android:attr/textAppearanceMedium" + android:layout_height="wrap_content" + android:layout_width="0dip" + android:layout_weight="1" + android:layout_gravity="center_vertical" + android:paddingRight="10dip"/> + + <Spinner + android:id="@+id/passPhraseCache" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical"/> + + </LinearLayout> + + <TextView android:id="@+id/section_defaults" android:text="@string/section_defaults" android:layout_width="fill_parent" android:layout_height="wrap_content" + android:layout_marginTop="5dip" android:textAppearance="?android:attr/textAppearanceLarge"/> <View @@ -61,9 +98,9 @@ android:layout_height="wrap_content" android:layout_gravity="center_vertical"/> - </LinearLayout> + </LinearLayout> - <LinearLayout + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> |