diff options
author | Michael Kolb <kolby@google.com> | 2010-12-09 20:49:54 -0800 |
---|---|---|
committer | Michael Kolb <kolby@google.com> | 2010-12-10 11:04:33 -0800 |
commit | 31d469bca6f6d5a8b444b7dac8038a1b75cd7e43 (patch) | |
tree | 264a6427e036c436585800ede19dccdb7255bfc0 /res/drawable | |
parent | a95eb89d34747a45ff45737c90784df885347f44 (diff) | |
download | packages_apps_Browser-31d469bca6f6d5a8b444b7dac8038a1b75cd7e43.zip packages_apps_Browser-31d469bca6f6d5a8b444b7dac8038a1b75cd7e43.tar.gz packages_apps_Browser-31d469bca6f6d5a8b444b7dac8038a1b75cd7e43.tar.bz2 |
Update url bar look & feel
updated assets, layout, search behavior
Change-Id: I05543e57cb9a69e3a7cb5fe9a27648fd7196e51e
Diffstat (limited to 'res/drawable')
-rw-r--r-- | res/drawable/btn_star.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/res/drawable/btn_star.xml b/res/drawable/btn_star.xml new file mode 100644 index 0000000..4c3d145 --- /dev/null +++ b/res/drawable/btn_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_activated="true" + android:drawable="@drawable/ic_favorite_on_normal" /> + <item android:state_activated="false" + android:drawable="@drawable/ic_favorite_off_normal" /> +</selector> |