diff options
author | Leon Scroggins III <scroggo@google.com> | 2010-09-30 17:17:02 -0400 |
---|---|---|
committer | Leon Scroggins III <scroggo@google.com> | 2010-10-01 13:50:59 -0400 |
commit | e2dc5260d9fc28b6169054aaf99e8006dd1b9803 (patch) | |
tree | 7395b20734f6e0b5f8180a9eda2f0c62941a4fb9 /core/res | |
parent | d1034c1967178302cad9085d15ae9849497babb2 (diff) | |
download | frameworks_base-e2dc5260d9fc28b6169054aaf99e8006dd1b9803.zip frameworks_base-e2dc5260d9fc28b6169054aaf99e8006dd1b9803.tar.gz frameworks_base-e2dc5260d9fc28b6169054aaf99e8006dd1b9803.tar.bz2 |
Create dummy assets for text selection actions.
The new assets are just copies of old assets. However, now
the code is set up properly, and when we do get final
assets no new code needs to be written, and both TextView
and the select action mode for the browser will be updated.
Change-Id: I9a1461bf447f6bbc2782d8f948d873cbeeccbcb0
Diffstat (limited to 'core/res')
-rw-r--r-- | core/res/res/drawable-hdpi/ic_menu_copy.png | bin | 0 -> 3639 bytes | |||
-rw-r--r-- | core/res/res/drawable-hdpi/ic_menu_cut.png | bin | 0 -> 2993 bytes | |||
-rw-r--r-- | core/res/res/drawable-hdpi/ic_menu_paste.png | bin | 0 -> 2736 bytes | |||
-rw-r--r-- | core/res/res/drawable-hdpi/ic_menu_select_all.png | bin | 0 -> 3086 bytes | |||
-rw-r--r-- | core/res/res/drawable-mdpi/ic_menu_copy.png | bin | 0 -> 2247 bytes | |||
-rw-r--r-- | core/res/res/drawable-mdpi/ic_menu_cut.png | bin | 0 -> 2014 bytes | |||
-rwxr-xr-x | core/res/res/drawable-mdpi/ic_menu_paste.png | bin | 0 -> 1971 bytes | |||
-rw-r--r-- | core/res/res/drawable-mdpi/ic_menu_select_all.png | bin | 0 -> 1865 bytes | |||
-rw-r--r-- | core/res/res/menu/webview_copy.xml | 4 |
9 files changed, 2 insertions, 2 deletions
diff --git a/core/res/res/drawable-hdpi/ic_menu_copy.png b/core/res/res/drawable-hdpi/ic_menu_copy.png Binary files differnew file mode 100644 index 0000000..8f11153 --- /dev/null +++ b/core/res/res/drawable-hdpi/ic_menu_copy.png diff --git a/core/res/res/drawable-hdpi/ic_menu_cut.png b/core/res/res/drawable-hdpi/ic_menu_cut.png Binary files differnew file mode 100644 index 0000000..6ad379e --- /dev/null +++ b/core/res/res/drawable-hdpi/ic_menu_cut.png diff --git a/core/res/res/drawable-hdpi/ic_menu_paste.png b/core/res/res/drawable-hdpi/ic_menu_paste.png Binary files differnew file mode 100644 index 0000000..5a3850f --- /dev/null +++ b/core/res/res/drawable-hdpi/ic_menu_paste.png diff --git a/core/res/res/drawable-hdpi/ic_menu_select_all.png b/core/res/res/drawable-hdpi/ic_menu_select_all.png Binary files differnew file mode 100644 index 0000000..dde6741 --- /dev/null +++ b/core/res/res/drawable-hdpi/ic_menu_select_all.png diff --git a/core/res/res/drawable-mdpi/ic_menu_copy.png b/core/res/res/drawable-mdpi/ic_menu_copy.png Binary files differnew file mode 100644 index 0000000..89d626f --- /dev/null +++ b/core/res/res/drawable-mdpi/ic_menu_copy.png diff --git a/core/res/res/drawable-mdpi/ic_menu_cut.png b/core/res/res/drawable-mdpi/ic_menu_cut.png Binary files differnew file mode 100644 index 0000000..1b4733e --- /dev/null +++ b/core/res/res/drawable-mdpi/ic_menu_cut.png diff --git a/core/res/res/drawable-mdpi/ic_menu_paste.png b/core/res/res/drawable-mdpi/ic_menu_paste.png Binary files differnew file mode 100755 index 0000000..cdf7ca3 --- /dev/null +++ b/core/res/res/drawable-mdpi/ic_menu_paste.png diff --git a/core/res/res/drawable-mdpi/ic_menu_select_all.png b/core/res/res/drawable-mdpi/ic_menu_select_all.png Binary files differnew file mode 100644 index 0000000..37fd3cb --- /dev/null +++ b/core/res/res/drawable-mdpi/ic_menu_select_all.png diff --git a/core/res/res/menu/webview_copy.xml b/core/res/res/menu/webview_copy.xml index 224f54f..adba563 100644 --- a/core/res/res/menu/webview_copy.xml +++ b/core/res/res/menu/webview_copy.xml @@ -16,7 +16,7 @@ <menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/copy" - android:icon="@drawable/ic_menu_attachment" + android:icon="@drawable/ic_menu_copy" android:showAsAction="always" /> <item android:id="@+id/share" @@ -24,7 +24,7 @@ android:showAsAction="always" /> <item android:id="@+id/select_all" - android:icon="@drawable/ic_menu_chat_dashboard" + android:icon="@drawable/ic_menu_select_all" android:showAsAction="always" /> <item android:id="@+id/find" |