Fixed the home button images

pull/14/head
Sam Bosley 14 years ago
parent 243d94a690
commit 03041b146f

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

@ -35,7 +35,7 @@
<!-- actionbar-styling -->
<item name="abBackground">@drawable/header_blue</item>
<item name="abDisplayOptions">useLogo|showHome|showTitle</item>
<item name="abLogo">?attr/asMainMenu</item>
<item name="abLogo">@drawable/home_button_blue</item>
<item name="vpiTabPageIndicatorStyle">@style/CustomTabPageIndicator</item>
<item name="vpiTabTextStyle">@style/CustomTabPageIndicator.Text</item>
</style>
@ -78,7 +78,7 @@
<!-- actionbar-styling -->
<item name="abBackground">@drawable/header_red</item>
<item name="abDisplayOptions">useLogo|showHome|showTitle</item>
<item name="abLogo">?attr/asMainMenu</item>
<item name="abLogo">@drawable/home_button_red</item>
</style>
<style name="Theme.White.Blue">
@ -92,6 +92,7 @@
<item name="asAbBackgroundColor">#e9e9e9</item>
<item name="asEditTabBackground">@drawable/custom_tab_indicator_dark_blue</item>
<item name="abBackground">@drawable/header_day_blue</item>
<item name="abLogo">@drawable/home_button_dark_blue</item>
</style>
<style name="Theme.TransparentWhite" parent="Theme.White">

@ -25,10 +25,10 @@ public class ThemeService {
return R.style.Theme_Transparent;
else if(preference != null && preference.equals("transparent-white"))
return R.style.Theme_TransparentWhite;
else if (preference != null && preference.equals("white-blue"))
return R.style.Theme_White_Blue;
else
else if (preference != null && preference.equals("white"))
return R.style.Theme_White;
else
return R.style.Theme_White_Blue;
}
public static int getEditDialogTheme() {

Loading…
Cancel
Save