Bug 698131 - Always use white style list views in AwesomeBar (r=mfinkle)

This will also inherit the proper pressed and focused states from the style.
This commit is contained in:
Lucas Rocha 2011-11-01 13:58:42 +00:00
parent fe3bde6ccc
commit 8eb130e19e
2 changed files with 1 additions and 6 deletions

View File

@ -2,7 +2,6 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#fefefe"
android:padding="6dip">
<ImageView android:id="@+id/favicon"

View File

@ -55,13 +55,9 @@
</style>
<!-- Lists in AwesomeBar -->
<style name="AwesomeBarList">
<style name="AwesomeBarList" parent="android:style/Widget.ListView.White">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">fill_parent</item>
<item name="android:layout_weight">1</item>
<item name="android:background">#fff</item>
<item name="android:cacheColorHint">#fff</item>
<item name="android:divider">#666666</item>
<item name="android:dividerHeight">1dp</item>
</style>
</resources>