summaryrefslogtreecommitdiffstats
path: root/res/layout-xlarge/other_setting_popup.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout-xlarge/other_setting_popup.xml')
-rw-r--r--res/layout-xlarge/other_setting_popup.xml74
1 files changed, 33 insertions, 41 deletions
diff --git a/res/layout-xlarge/other_setting_popup.xml b/res/layout-xlarge/other_setting_popup.xml
index 6244044..7c61d7b 100644
--- a/res/layout-xlarge/other_setting_popup.xml
+++ b/res/layout-xlarge/other_setting_popup.xml
@@ -23,47 +23,39 @@
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
- android:background="@drawable/menu_popup">
+ android:layout_marginRight="225dp"
+ android:orientation="vertical">
- <TableRow style="@style/OtherSettingTableRow">
- <TextView android:text="@string/pref_camera_recordlocation_title"
- style="@style/SettingPickerText" />
- <com.android.camera.ui.InLineSettingPicker
- camera:prefKey="pref_camera_recordlocation_key" />
- </TableRow>
+ <FrameLayout android:id="@+id/topPanel"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:minHeight="48dip">
+ <TextView android:id="@+id/title"
+ android:text="@string/pref_camera_settings_category"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="left|bottom"
+ android:layout_marginLeft="16dp"
+ android:layout_marginBottom="10dp"
+ android:textColor="@android:color/white"
+ style="@style/SettingPickerText" />
+ </FrameLayout>
- <TableRow style="@style/OtherSettingTableRow">
- <TextView android:text="@string/pref_camera_focusmode_title"
- style="@style/SettingPickerText" />
- <com.android.camera.ui.InLineSettingPicker
- camera:prefKey="pref_camera_focusmode_key" />
- </TableRow>
-
- <TableRow style="@style/OtherSettingTableRow">
- <TextView android:text="@string/pref_exposure_title"
- style="@style/SettingPickerText" />
- <com.android.camera.ui.InLineSettingPicker
- camera:prefKey="pref_camera_exposure_key" />
- </TableRow>
-
- <TableRow style="@style/OtherSettingTableRow">
- <TextView android:text="@string/pref_camera_picturesize_title"
- style="@style/SettingPickerText" />
- <com.android.camera.ui.InLineSettingPicker
- camera:prefKey="pref_camera_picturesize_key" />
- </TableRow>
-
- <TableRow style="@style/OtherSettingTableRow">
- <TextView android:text="@string/pref_camera_jpegquality_title"
- style="@style/SettingPickerText" />
- <com.android.camera.ui.InLineSettingPicker
- camera:prefKey="pref_camera_jpegquality_key" />
- </TableRow>
-
- <TableRow style="@style/OtherSettingTableRow">
- <TextView android:text="@string/pref_camera_scenemode_title"
- style="@style/SettingPickerText" />
- <com.android.camera.ui.InLineSettingPicker
- camera:prefKey="pref_camera_scenemode_key" />
- </TableRow>
+ <LinearLayout android:id="@+id/contentPanel"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:orientation="vertical">
+ <com.android.camera.ui.InLineSettingPicker camera:prefKey="pref_camera_recordlocation_key"
+ style="@style/SettingRow" />
+ <com.android.camera.ui.InLineSettingPicker camera:prefKey="pref_camera_focusmode_key"
+ style="@style/SettingRow" />
+ <com.android.camera.ui.InLineSettingPicker camera:prefKey="pref_camera_exposure_key"
+ style="@style/SettingRow" />
+ <com.android.camera.ui.InLineSettingPicker camera:prefKey="pref_camera_picturesize_key"
+ style="@style/SettingRow" />
+ <com.android.camera.ui.InLineSettingPicker camera:prefKey="pref_camera_jpegquality_key"
+ style="@style/SettingRow" />
+ <com.android.camera.ui.InLineSettingPicker camera:prefKey="pref_camera_scenemode_key"
+ style="@style/SettingRow" />
+ </LinearLayout>
</com.android.camera.ui.OtherSettingsPopup>