summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorAlan Viverette <alanv@google.com>2015-04-06 23:11:28 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-04-06 23:11:30 +0000
commit1f188b56995f4d4492af1c8f77cfb5fbea24e03e (patch)
tree3855738808e1d21ef9887483ef4185f78db6ce91 /core
parent33f8d0976fc91d0bc64ccd41c86566e0ec0fbb89 (diff)
parent789e77683522c20b84fd464ff0f9bc6cd16a3a43 (diff)
downloadframeworks_base-1f188b56995f4d4492af1c8f77cfb5fbea24e03e.zip
frameworks_base-1f188b56995f4d4492af1c8f77cfb5fbea24e03e.tar.gz
frameworks_base-1f188b56995f4d4492af1c8f77cfb5fbea24e03e.tar.bz2
Merge "Replace PNG list divider with XML shape"
Diffstat (limited to 'core')
-rw-r--r--core/res/res/drawable-hdpi/list_divider_mtrl_alpha.9.pngbin136 -> 0 bytes
-rw-r--r--core/res/res/drawable-mdpi/list_divider_mtrl_alpha.9.pngbin136 -> 0 bytes
-rw-r--r--core/res/res/drawable-xhdpi/list_divider_mtrl_alpha.9.pngbin136 -> 0 bytes
-rw-r--r--core/res/res/drawable-xxhdpi/list_divider_mtrl_alpha.9.pngbin138 -> 0 bytes
-rw-r--r--core/res/res/drawable/list_divider_material.xml11
5 files changed, 7 insertions, 4 deletions
diff --git a/core/res/res/drawable-hdpi/list_divider_mtrl_alpha.9.png b/core/res/res/drawable-hdpi/list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 2fa6d7e..0000000
--- a/core/res/res/drawable-hdpi/list_divider_mtrl_alpha.9.png
+++ /dev/null
Binary files differ
diff --git a/core/res/res/drawable-mdpi/list_divider_mtrl_alpha.9.png b/core/res/res/drawable-mdpi/list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 070bdbf..0000000
--- a/core/res/res/drawable-mdpi/list_divider_mtrl_alpha.9.png
+++ /dev/null
Binary files differ
diff --git a/core/res/res/drawable-xhdpi/list_divider_mtrl_alpha.9.png b/core/res/res/drawable-xhdpi/list_divider_mtrl_alpha.9.png
deleted file mode 100644
index 0d2836d..0000000
--- a/core/res/res/drawable-xhdpi/list_divider_mtrl_alpha.9.png
+++ /dev/null
Binary files differ
diff --git a/core/res/res/drawable-xxhdpi/list_divider_mtrl_alpha.9.png b/core/res/res/drawable-xxhdpi/list_divider_mtrl_alpha.9.png
deleted file mode 100644
index b8ac46d..0000000
--- a/core/res/res/drawable-xxhdpi/list_divider_mtrl_alpha.9.png
+++ /dev/null
Binary files differ
diff --git a/core/res/res/drawable/list_divider_material.xml b/core/res/res/drawable/list_divider_material.xml
index babb646..658a59d 100644
--- a/core/res/res/drawable/list_divider_material.xml
+++ b/core/res/res/drawable/list_divider_material.xml
@@ -14,7 +14,10 @@
limitations under the License.
-->
-<nine-patch xmlns:android="http://schemas.android.com/apk/res/android"
- android:src="@drawable/list_divider_mtrl_alpha"
- android:tint="?attr/colorForeground"
- android:alpha="0.12" />
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:tint="?attr/colorForeground">
+ <solid android:color="#1f000000" />
+ <size
+ android:height="1dp"
+ android:width="1dp" />
+</shape>