Fixed Buttons on home page. Began changes to UI. Updated strings values

in lot view.
This commit is contained in:
RowenaWinston
2013-12-05 18:22:16 -05:00
parent f6b7609420
commit 5baabb7c4a
168 changed files with 822 additions and 393 deletions

View File

@ -0,0 +1,65 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated with http://android-holo-colors.com -->
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AutoCompleteTextViewGameDayTheme" parent="android:Widget.Holo.AutoCompleteTextView">
<item name="android:dropDownSelector">@drawable/gamedaytheme_list_selector_holo_dark</item>
<item name="android:background">@drawable/gamedaytheme_edit_text_holo_dark</item>
</style>
<style name="ButtonGameDayTheme" parent="android:Widget.Holo.Button">
<item name="android:background">@drawable/gamedaytheme_btn_default_holo_dark</item>
</style>
<style name="ImageButtonGameDayTheme" parent="android:Widget.Holo.ImageButton">
<item name="android:background">@drawable/gamedaytheme_btn_default_holo_dark</item>
</style>
<style name="SpinnerGameDayTheme" parent="android:Widget.Holo.Spinner">
<item name="android:background">@drawable/gamedaytheme_spinner_background_holo_dark</item>
<item name="android:dropDownSelector">@drawable/gamedaytheme_list_selector_holo_dark</item>
</style>
<style name="TabWidgetGameDayTheme" parent="@android:style/Widget.TabWidget">
<item name="android:tabStripLeft">@null</item>
<item name="android:tabStripRight">@null</item>
<item name="android:tabStripEnabled">false</item>
<item name="android:divider">?android:attr/dividerVertical</item>
<item name="android:showDividers">middle</item>
<item name="android:dividerPadding">8dip</item>
<item name="android:measureWithLargestChild">true</item>
<item name="tabLayout">@layout/gamedaytheme_tab_indicator_holo</item>
</style>
<style name="ProgressBarGameDayTheme" parent="android:Widget.Holo.ProgressBar.Horizontal">
<item name="android:progressDrawable">@drawable/gamedaytheme_progress_horizontal_holo_dark</item>
<item name="android:indeterminateDrawable">@drawable/gamedaytheme_progress_indeterminate_horizontal_holo_dark</item>
</style>
<style name="SeekBarGameDayTheme" parent="android:Widget.Holo.SeekBar">
<item name="android:progressDrawable">@drawable/gamedaytheme_scrubber_progress_horizontal_holo_dark</item>
<item name="android:indeterminateDrawable">@drawable/gamedaytheme_scrubber_progress_horizontal_holo_dark</item>
<item name="android:thumb">@drawable/gamedaytheme_scrubber_control_selector_holo_dark</item>
</style>
<style name="RatingBarGameDayTheme" parent="android:Widget.Holo.RatingBar">
<item name="android:progressDrawable">@drawable/gamedaytheme_ratingbar_full_holo_dark</item>
<item name="android:indeterminateDrawable">@drawable/gamedaytheme_ratingbar_full_holo_dark</item>
</style>
<style name="RatingBarBigGameDayTheme" parent="android:Widget.Holo.RatingBar.Indicator">
<item name="android:progressDrawable">@drawable/gamedaytheme_ratingbar_holo_dark</item>
<item name="android:indeterminateDrawable">@drawable/gamedaytheme_ratingbar_holo_dark</item>
</style>
<style name="RatingBarSmallGameDayTheme" parent="android:Widget.Holo.RatingBar.Small">
<item name="android:progressDrawable">@drawable/gamedaytheme_ratingbar_small_holo_dark</item>
<item name="android:indeterminateDrawable">@drawable/gamedaytheme_ratingbar_small_holo_dark</item>
</style>
<style name="ToggleGameDayTheme" parent="android:Widget.Holo.Button.Toggle">
<item name="android:background">@drawable/gamedaytheme_btn_toggle_holo_dark</item>
</style>
</resources>

View File

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generated with http://android-holo-colors.com -->
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="GameDayTheme" parent="android:Theme.Holo">
<item name="android:editTextBackground">@drawable/gamedaytheme_edit_text_holo_dark</item>
<item name="android:autoCompleteTextViewStyle">@style/AutoCompleteTextViewGameDayTheme</item>
<item name="android:listChoiceIndicatorMultiple">@drawable/gamedaytheme_btn_check_holo_dark</item>
<item name="android:listChoiceIndicatorSingle">@drawable/gamedaytheme_btn_radio_holo_dark</item>
<item name="android:buttonStyle">@style/ButtonGameDayTheme</item>
<item name="android:imageButtonStyle">@style/ImageButtonGameDayTheme</item>
<item name="android:dropDownSpinnerStyle">@style/SpinnerGameDayTheme</item>
<item name="android:tabWidgetStyle">@style/TabWidgetGameDayTheme</item>
<item name="android:progressBarStyleHorizontal">@style/ProgressBarGameDayTheme</item>
<item name="android:seekBarStyle">@style/SeekBarGameDayTheme</item>
<item name="android:ratingBarStyle">@style/RatingBarGameDayTheme</item>
<item name="android:ratingBarStyleIndicator">@style/RatingBarBigGameDayTheme</item>
<item name="android:ratingBarStyleSmall">@style/RatingBarSmallGameDayTheme</item>
<item name="android:buttonStyleToggle">@style/ToggleGameDayTheme</item>
<item name="android:listChoiceBackgroundIndicator">@drawable/gamedaytheme_list_selector_holo_dark</item>
<item name="android:activatedBackgroundIndicator">@drawable/gamedaytheme_activated_background_holo_dark</item>
<item name="android:fastScrollThumbDrawable">@drawable/gamedaytheme_fastscroll_thumb_holo</item>
</style>
</resources>