diff options
author | Clark Scheff <clark@cyngn.com> | 2014-07-16 16:56:31 -0700 |
---|---|---|
committer | Clark Scheff <clark@cyngn.com> | 2014-07-17 16:19:02 +0000 |
commit | 8b0b4086b24f7525cdcc13eb8b6fd44dac891219 (patch) | |
tree | 46ea9735b18c9b85e0fb4af49433d29d56392ed7 /res | |
parent | accf71cc2f859c8c8d241e7f67fe118ac82bf6f5 (diff) | |
download | packages_apps_ThemeChooser-8b0b4086b24f7525cdcc13eb8b6fd44dac891219.zip packages_apps_ThemeChooser-8b0b4086b24f7525cdcc13eb8b6fd44dac891219.tar.gz packages_apps_ThemeChooser-8b0b4086b24f7525cdcc13eb8b6fd44dac891219.tar.bz2 |
Add selector background to all component selection items.
Change-Id: I038e543c8815412b4fd78db3ea7d01f132d200e0
Diffstat (limited to 'res')
5 files changed, 10 insertions, 5 deletions
diff --git a/res/layout/bootani_component_selection_item.xml b/res/layout/bootani_component_selection_item.xml index 6af9768..6d855cc 100644 --- a/res/layout/bootani_component_selection_item.xml +++ b/res/layout/bootani_component_selection_item.xml @@ -2,7 +2,8 @@ <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" - android:layout_height="@dimen/component_selection_cell_height_boot_anim"> + android:layout_height="@dimen/component_selection_cell_height_boot_anim" + android:background="@drawable/component_selection_selector"> <ImageView android:id="@+id/preview" diff --git a/res/layout/font_component_selection_item.xml b/res/layout/font_component_selection_item.xml index 94515e9..bd3c154 100644 --- a/res/layout/font_component_selection_item.xml +++ b/res/layout/font_component_selection_item.xml @@ -2,7 +2,8 @@ <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" - android:layout_height="@dimen/component_selection_cell_height"> + android:layout_height="@dimen/component_selection_cell_height" + android:background="@drawable/component_selection_selector"> <org.cyanogenmod.theme.util.FittedTextView android:id="@+id/text_preview" diff --git a/res/layout/icon_component_selection_item.xml b/res/layout/icon_component_selection_item.xml index 159d7ad..7e9aba9 100644 --- a/res/layout/icon_component_selection_item.xml +++ b/res/layout/icon_component_selection_item.xml @@ -2,7 +2,8 @@ <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" - android:layout_height="@dimen/component_selection_cell_height"> + android:layout_height="@dimen/component_selection_cell_height" + android:background="@drawable/component_selection_selector"> <ImageView android:id="@+id/icon" diff --git a/res/layout/navigation_bar_component_selection_item.xml b/res/layout/navigation_bar_component_selection_item.xml index 207f4b9..004f0fb 100644 --- a/res/layout/navigation_bar_component_selection_item.xml +++ b/res/layout/navigation_bar_component_selection_item.xml @@ -2,7 +2,8 @@ <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" - android:layout_height="@dimen/component_selection_cell_height"> + android:layout_height="@dimen/component_selection_cell_height" + android:background="@drawable/component_selection_selector"> <LinearLayout android:id="@+id/container" diff --git a/res/layout/wallpaper_component_selection_item.xml b/res/layout/wallpaper_component_selection_item.xml index 015270f..9f87f1e 100644 --- a/res/layout/wallpaper_component_selection_item.xml +++ b/res/layout/wallpaper_component_selection_item.xml @@ -2,7 +2,8 @@ <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" - android:layout_height="@dimen/component_selection_cell_height"> + android:layout_height="@dimen/component_selection_cell_height" + android:background="@drawable/component_selection_selector"> <FrameLayout android:id="@+id/wp_content" |