summaryrefslogtreecommitdiffstats
path: root/res/drawable
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2011-01-18 13:16:33 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-01-18 13:16:33 -0800
commit963243527d67fd6c2ada3899c452de94d8d9f8e5 (patch)
tree29923561f166aae9892e1a49ef46c6eaa1ba27aa /res/drawable
parent37fef614914d3ed8d6f2a1decce57fdd1057ad53 (diff)
parent0ce8a942a895cfe1d432076a95f3ed3798ccb002 (diff)
downloadpackages_apps_browser-963243527d67fd6c2ada3899c452de94d8d9f8e5.zip
packages_apps_browser-963243527d67fd6c2ada3899c452de94d8d9f8e5.tar.gz
packages_apps_browser-963243527d67fd6c2ada3899c452de94d8d9f8e5.tar.bz2
Merge "History UI update" into honeycomb
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/bookmark_list_favicon_bg.xml10
-rw-r--r--res/drawable/btn_checkbox_star.xml22
-rw-r--r--res/drawable/btn_imageview_star.xml (renamed from res/drawable/btn_star.xml)0
3 files changed, 27 insertions, 5 deletions
diff --git a/res/drawable/bookmark_list_favicon_bg.xml b/res/drawable/bookmark_list_favicon_bg.xml
index 3d362e4..ceb545d 100644
--- a/res/drawable/bookmark_list_favicon_bg.xml
+++ b/res/drawable/bookmark_list_favicon_bg.xml
@@ -18,9 +18,9 @@
android:shape="rectangle">
<solid android:color="@color/bookmarkListFaviconBackground" />
<padding
- android:left="5dip"
- android:right="5dip"
- android:top="5dip"
- android:bottom="5dip" />
- <corners android:radius="3dip" />
+ android:left="@dimen/list_favicon_padding"
+ android:right="@dimen/list_favicon_padding"
+ android:top="@dimen/list_favicon_padding"
+ android:bottom="@dimen/list_favicon_padding" />
+ <corners android:radius="@dimen/list_favicon_corner_radius" />
</shape>
diff --git a/res/drawable/btn_checkbox_star.xml b/res/drawable/btn_checkbox_star.xml
new file mode 100644
index 0000000..9635dad
--- /dev/null
+++ b/res/drawable/btn_checkbox_star.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2008 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_checked="true"
+ android:drawable="@drawable/ic_favorite_on_normal" />
+ <item android:state_checked="false"
+ android:drawable="@drawable/ic_favorite_off_normal" />
+</selector>
diff --git a/res/drawable/btn_star.xml b/res/drawable/btn_imageview_star.xml
index 4c3d145..4c3d145 100644
--- a/res/drawable/btn_star.xml
+++ b/res/drawable/btn_imageview_star.xml