Made list background white with dark text in black theme

pull/14/head
Sam Bosley 13 years ago
parent 95617542be
commit 30b55e3628

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 B

@ -3,7 +3,7 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="@drawable/list_popover_bg" android:background="?attr/asListPopoverBg"
android:orientation="vertical"> android:orientation="vertical">

@ -17,7 +17,7 @@
<View <View
android:layout_width="1px" android:layout_width="1px"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="#000000"/> android:background="?attr/asSeparatorBackground"/>
<!-- Task List --> <!-- Task List -->
<FrameLayout <FrameLayout
@ -29,7 +29,7 @@
<View <View
android:layout_width="1px" android:layout_width="1px"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="#000000"/> android:background="?attr/asSeparatorBackground"/>
<!-- Task Edit --> <!-- Task Edit -->
<FrameLayout <FrameLayout

@ -3,7 +3,7 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:background="@drawable/list_popover_bg" android:background="?attr/asListPopoverBg"
android:orientation="vertical"> android:orientation="vertical">

@ -3,7 +3,7 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_height="fill_parent"
android:background="@color/tablet_list_bg"> android:background="?attr/asListTabletBg">
<!-- Footer --> <!-- Footer -->
<LinearLayout <LinearLayout

@ -17,7 +17,7 @@
android:layout_height="27dip" android:layout_height="27dip"
android:scaleType="fitCenter" android:scaleType="fitCenter"
android:layout_marginBottom="-8dip" android:layout_marginBottom="-8dip"
android:src="@drawable/list_arrow_up" /> android:src="?attr/asListArrowUp" />
<ImageView <ImageView
android:id="@+id/gdi_arrow_down" android:id="@+id/gdi_arrow_down"
@ -25,7 +25,6 @@
android:layout_height="27dip" android:layout_height="27dip"
android:scaleType="fitCenter" android:scaleType="fitCenter"
android:layout_marginBottom="-8dip" android:layout_marginBottom="-8dip"
android:layout_below="@android:id/list" android:layout_below="@android:id/list" />
android:src="@drawable/list_arrow_down" />
</RelativeLayout> </RelativeLayout>

@ -17,7 +17,7 @@
<View <View
android:layout_width="1px" android:layout_width="1px"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="#000000"/> android:background="?attr/asSeparatorBackground"/>
<!-- Task List --> <!-- Task List -->
<FrameLayout <FrameLayout
@ -29,7 +29,7 @@
<View <View
android:layout_width="1px" android:layout_width="1px"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="#000000"/> android:background="?attr/asSeparatorBackground"/>
<!-- Task Edit --> <!-- Task Edit -->
<FrameLayout <FrameLayout

@ -29,6 +29,9 @@
<attr name="asRepeatIcon" format="reference" /> <attr name="asRepeatIcon" format="reference" />
<attr name="asMainMenu" format="reference" /> <attr name="asMainMenu" format="reference" />
<attr name="asAbBackgroundColor" format="color"/> <attr name="asAbBackgroundColor" format="color"/>
<attr name="asListPopoverBg" format="reference"/>
<attr name="asListTabletBg" format="color"/>
<attr name="asListArrowUp" format="reference"/>
<declare-styleable name="ContactsAutoComplete"> <declare-styleable name="ContactsAutoComplete">
<attr name="allowMultiple" format="boolean"/> <attr name="allowMultiple" format="boolean"/>

@ -30,7 +30,8 @@
<color name="red_theme_color">#d90000</color> <color name="red_theme_color">#d90000</color>
<color name="dark_blue_theme_color">#1f78b4</color> <color name="dark_blue_theme_color">#1f78b4</color>
<color name="tablet_list_bg">#292929</color> <color name="tablet_list_bg">#292929</color>
<color name="tablet_list_selected">#101010</color> <color name="tablet_list_bg_white">#eee6e6e6</color>
<color name="tablet_list_selected">#cccccc</color>
<color name="reminder_background">#262626</color> <color name="reminder_background">#262626</color>
</resources> </resources>

@ -31,6 +31,9 @@
<item name="asAbBackgroundColor">#000000</item> <item name="asAbBackgroundColor">#000000</item>
<item name="asTaskEditArrow">@drawable/taskedit_arrow_up_white</item> <item name="asTaskEditArrow">@drawable/taskedit_arrow_up_white</item>
<item name="asRepeatIcon">@drawable/icn_edit_repeats_blue</item> <item name="asRepeatIcon">@drawable/icn_edit_repeats_blue</item>
<item name="asListPopoverBg">@drawable/list_popover_bg_white</item>
<item name="asListArrowUp">@drawable/list_arrow_up_white</item>
<item name="asListTabletBg">@color/tablet_list_bg_white</item>
<!-- actionbar-styling --> <!-- actionbar-styling -->
<item name="abBackground">@drawable/header_blue</item> <item name="abBackground">@drawable/header_blue</item>
@ -74,6 +77,9 @@
<item name="asTaskEditArrow">@drawable/taskedit_arrow_up_white</item> <item name="asTaskEditArrow">@drawable/taskedit_arrow_up_white</item>
<item name="asRepeatIcon">@drawable/icn_edit_repeats_red</item> <item name="asRepeatIcon">@drawable/icn_edit_repeats_red</item>
<item name="asAbBackgroundColor">#ffffff</item> <item name="asAbBackgroundColor">#ffffff</item>
<item name="asListPopoverBg">@drawable/list_popover_bg</item>
<item name="asListTabletBg">@color/tablet_list_bg</item>
<item name="asListArrowUp">@drawable/list_arrow_up</item>
<!-- actionbar-styling --> <!-- actionbar-styling -->
<item name="abBackground">@drawable/header_red</item> <item name="abBackground">@drawable/header_red</item>
@ -337,7 +343,7 @@
<style name="TextAppearance.FLA_Filter"> <style name="TextAppearance.FLA_Filter">
<item name="android:textSize">18sp</item> <item name="android:textSize">18sp</item>
<item name="android:textStyle">bold</item> <item name="android:textStyle">bold</item>
<item name="android:textColor">@android:color/white</item> <item name="android:textColor">?attr/asTextColorInverse</item>
</style> </style>
<style name="TextAppearance.FLA_Button" parent="TextAppearance.FLA_Filter"> <style name="TextAppearance.FLA_Button" parent="TextAppearance.FLA_Filter">

Loading…
Cancel
Save