summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorDaisuke Miyakawa <dmiyakawa@google.com>2010-08-12 13:04:43 -0700
committerDaisuke Miyakawa <dmiyakawa@google.com>2010-08-13 13:36:51 -0700
commitc81adf598f27fb13f6043cea3b1c4f0839c337dd (patch)
tree1f05d3e901e80d2c8028c900c7f0675646285774 /res/layout
parent6a3e48c0359b780947b3c05f3fdd2493d6a79eb9 (diff)
downloadpackages_apps_Settings-c81adf598f27fb13f6043cea3b1c4f0839c337dd.zip
packages_apps_Settings-c81adf598f27fb13f6043cea3b1c4f0839c337dd.tar.gz
packages_apps_Settings-c81adf598f27fb13f6043cea3b1c4f0839c337dd.tar.bz2
Create LocalePickerFragment for fragmentizing LocalePicker Activity.
Need to add proguard.flag, as the Activity crashes without it. Change-Id: Icbc75be4a4183920ed472ac64cc509115260f865
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/locale_picker.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/res/layout/locale_picker.xml b/res/layout/locale_picker.xml
index cc38278..7fef2ff 100644
--- a/res/layout/locale_picker.xml
+++ b/res/layout/locale_picker.xml
@@ -19,10 +19,10 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
- <ListView android:id="@android:id/list"
+ <fragment
+ android:id="@+id/locale_picker_fragment"
+ android:name="com.android.settings.LocalePickerFragment"
android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:drawSelectorOnTop="false"
- />
-
+ android:layout_height="0dip"
+ android:layout_weight="1" />
</LinearLayout>