diff options
author | Leon Scroggins <scroggo@google.com> | 2009-06-09 15:46:41 -0400 |
---|---|---|
committer | Leon Scroggins <scroggo@google.com> | 2009-06-09 15:46:41 -0400 |
commit | e4b3bda762ab616b2899c8de084e515f01b99c8a (patch) | |
tree | 67a30dc0c2750f0b364e9a1561e38ecd8537e304 /res/drawable | |
parent | 0c905361102172637dbf10b3902fe4c62f9c1d6e (diff) | |
download | packages_apps_browser-e4b3bda762ab616b2899c8de084e515f01b99c8a.zip packages_apps_browser-e4b3bda762ab616b2899c8de084e515f01b99c8a.tar.gz packages_apps_browser-e4b3bda762ab616b2899c8de084e515f01b99c8a.tar.bz2 |
Updates to the browser's custom title bar.
Use an asset copied from the Market for the background. Since this background is
dark, change the title's text to white, as well as the dividing line. Changed
the functionality of the buttons on the title bar. Also flipped the title and
the url, and fixed a bug where "Loading..." remained for too long. Also added
the drop shadow below the title bar.
Diffstat (limited to 'res/drawable')
-rw-r--r-- | res/drawable/background_titlebar.png | bin | 137 -> 2426 bytes | |||
-rw-r--r-- | res/drawable/button_line.xml | 5 |
2 files changed, 2 insertions, 3 deletions
diff --git a/res/drawable/background_titlebar.png b/res/drawable/background_titlebar.png Binary files differindex 0d7c562..1fdb078 100644 --- a/res/drawable/background_titlebar.png +++ b/res/drawable/background_titlebar.png diff --git a/res/drawable/button_line.xml b/res/drawable/button_line.xml index 03b5d35..67869d0 100644 --- a/res/drawable/button_line.xml +++ b/res/drawable/button_line.xml @@ -16,13 +16,12 @@ <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape android:width="2dip"> - <!-- Want it to have 90% alpha --> - <solid android:color="#ffdfdfdf"/> + <solid android:color="#ff000000"/> </shape> </item> <item android:left="1dip" android:width="1dip"> <shape> - <solid android:color="#ffb6b6b6"/> + <solid android:color="#ffffffff"/> </shape> </item> </layer-list> |