summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorcretin45 <cretin45@gmail.com>2015-10-27 12:44:11 -0700
committercretin45 <cretin45@gmail.com>2015-10-27 12:44:11 -0700
commitb64d5e7676a1f31f200ae9b5134b5ccd4aab38d4 (patch)
treeb0d51283539b9875c57796516e1ac07f57eb2d3b /res/layout
parent41801b0ca2a8d580d57bb1d7072622140b286b1d (diff)
downloadpackages_apps_SetupWizard-b64d5e7676a1f31f200ae9b5134b5ccd4aab38d4.tar.gz
packages_apps_SetupWizard-b64d5e7676a1f31f200ae9b5134b5ccd4aab38d4.tar.bz2
packages_apps_SetupWizard-b64d5e7676a1f31f200ae9b5134b5ccd4aab38d4.zip
SetupWizard: Fix locale picker styling
Change-Id: If336a8321b09513ec8b22f8138a47fb4d94e5913
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/locale_picker.xml36
-rw-r--r--res/layout/setup_welcome_page.xml1
2 files changed, 19 insertions, 18 deletions
diff --git a/res/layout/locale_picker.xml b/res/layout/locale_picker.xml
index 6c943c5..bcf0354 100644
--- a/res/layout/locale_picker.xml
+++ b/res/layout/locale_picker.xml
@@ -19,24 +19,26 @@
<merge xmlns:android="http://schemas.android.com/apk/res/android">
- <ImageButton android:id="@+id/increment"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:paddingTop="22dip"
- android:paddingBottom="22dip"/>
+ <ImageButton android:id="@+id/lp__increment"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:paddingTop="22dip"
+ android:paddingBottom="22dip"/>
- <EditText
- android:id="@+id/numberpicker_input"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceMediumInverse"
- android:gravity="center"
- android:singleLine="true" />
+ <view class="com.cyanogenmod.setupwizard.ui.LocalePicker$CustomEditText"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:textColor="?android:attr/textColorPrimary"
+ android:id="@+id/localepicker_input"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center"
+ android:singleLine="true"
+ android:background="@null" />
- <ImageButton android:id="@+id/decrement"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:paddingTop="22dip"
- android:paddingBottom="22dip"/>
+ <ImageButton android:id="@+id/lp__decrement"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:paddingTop="22dip"
+ android:paddingBottom="22dip"/>
</merge>
diff --git a/res/layout/setup_welcome_page.xml b/res/layout/setup_welcome_page.xml
index dc2d499..c45e77e 100644
--- a/res/layout/setup_welcome_page.xml
+++ b/res/layout/setup_welcome_page.xml
@@ -34,7 +34,6 @@
android:id="@+id/locale_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:minHeight="@dimen/min_locale_picker_height"
android:focusable="true"
android:focusableInTouchMode="true"
android:layout_centerInParent="true"/>