diff options
| author | Alan Viverette <alanv@google.com> | 2015-04-06 23:11:28 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-04-06 23:11:30 +0000 |
| commit | 1f188b56995f4d4492af1c8f77cfb5fbea24e03e (patch) | |
| tree | 3855738808e1d21ef9887483ef4185f78db6ce91 | |
| parent | 33f8d0976fc91d0bc64ccd41c86566e0ec0fbb89 (diff) | |
| parent | 789e77683522c20b84fd464ff0f9bc6cd16a3a43 (diff) | |
| download | frameworks_base-1f188b56995f4d4492af1c8f77cfb5fbea24e03e.zip frameworks_base-1f188b56995f4d4492af1c8f77cfb5fbea24e03e.tar.gz frameworks_base-1f188b56995f4d4492af1c8f77cfb5fbea24e03e.tar.bz2 | |
Merge "Replace PNG list divider with XML shape"
| -rw-r--r-- | core/res/res/drawable-hdpi/list_divider_mtrl_alpha.9.png | bin | 136 -> 0 bytes | |||
| -rw-r--r-- | core/res/res/drawable-mdpi/list_divider_mtrl_alpha.9.png | bin | 136 -> 0 bytes | |||
| -rw-r--r-- | core/res/res/drawable-xhdpi/list_divider_mtrl_alpha.9.png | bin | 136 -> 0 bytes | |||
| -rw-r--r-- | core/res/res/drawable-xxhdpi/list_divider_mtrl_alpha.9.png | bin | 138 -> 0 bytes | |||
| -rw-r--r-- | core/res/res/drawable/list_divider_material.xml | 11 |
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 Binary files differdeleted file mode 100644 index 2fa6d7e..0000000 --- a/core/res/res/drawable-hdpi/list_divider_mtrl_alpha.9.png +++ /dev/null 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 Binary files differdeleted file mode 100644 index 070bdbf..0000000 --- a/core/res/res/drawable-mdpi/list_divider_mtrl_alpha.9.png +++ /dev/null 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 Binary files differdeleted file mode 100644 index 0d2836d..0000000 --- a/core/res/res/drawable-xhdpi/list_divider_mtrl_alpha.9.png +++ /dev/null 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 Binary files differdeleted file mode 100644 index b8ac46d..0000000 --- a/core/res/res/drawable-xxhdpi/list_divider_mtrl_alpha.9.png +++ /dev/null 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> |
