diff options
Diffstat (limited to 'main/res/drawable')
60 files changed, 539 insertions, 450 deletions
diff --git a/main/res/drawable/action_button_dark.xml b/main/res/drawable/action_button_dark.xml index 7732b8e..bca85b4 100644 --- a/main/res/drawable/action_button_dark.xml +++ b/main/res/drawable/action_button_dark.xml @@ -1,13 +1,10 @@ <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> - <item android:drawable="@drawable/action_button_dark_pressed" - android:state_focused="true" android:state_pressed="true" /> - <item android:drawable="@drawable/action_button_dark_pressed" - android:state_focused="false" android:state_pressed="true" /> - <item android:drawable="@drawable/action_button_dark_selected" - android:state_focused="true" /> - <item android:drawable="@drawable/action_button_dark_default" - android:state_focused="false" android:state_pressed="false" /> - <item android:drawable="@drawable/action_button_dark_off" - android:state_enabled="false" /> + + <item android:drawable="@drawable/action_button_dark_pressed" android:state_focused="true" android:state_pressed="true"/> + <item android:drawable="@drawable/action_button_dark_pressed" android:state_focused="false" android:state_pressed="true"/> + <item android:drawable="@drawable/action_button_dark_selected" android:state_focused="true"/> + <item android:drawable="@drawable/action_button_dark_default" android:state_focused="false" android:state_pressed="false"/> + <item android:drawable="@drawable/action_button_dark_off" android:state_enabled="false"/> + </selector>
\ No newline at end of file diff --git a/main/res/drawable/action_button_dark_default.xml b/main/res/drawable/action_button_dark_default.xml index 8059482..e28312b 100644 --- a/main/res/drawable/action_button_dark_default.xml +++ b/main/res/drawable/action_button_dark_default.xml @@ -1,9 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#66FFFFFF" - android:width="1px" /> - <solid - android:color="#11FFFFFF" /> + android:shape="rectangle" > + + <stroke + android:width="1px" + android:color="#66FFFFFF" /> + + <solid android:color="#11FFFFFF" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/action_button_dark_off.xml b/main/res/drawable/action_button_dark_off.xml index 6b0f3ff..e31a0cc 100644 --- a/main/res/drawable/action_button_dark_off.xml +++ b/main/res/drawable/action_button_dark_off.xml @@ -1,9 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#44FFFFFF" - android:width="1px" /> - <solid - android:color="#33000000" /> + android:shape="rectangle" > + + <stroke + android:width="1px" + android:color="#44FFFFFF" /> + + <solid android:color="#33000000" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/action_button_dark_pressed.xml b/main/res/drawable/action_button_dark_pressed.xml index 79a1c65..40d7100 100644 --- a/main/res/drawable/action_button_dark_pressed.xml +++ b/main/res/drawable/action_button_dark_pressed.xml @@ -1,9 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#FFFFFFFF" - android:width="2px" /> - <solid - android:color="#44FFFFFF" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#FFFFFFFF" /> + + <solid android:color="#44FFFFFF" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/action_button_dark_selected.xml b/main/res/drawable/action_button_dark_selected.xml index 824b49c..ddd6f65 100644 --- a/main/res/drawable/action_button_dark_selected.xml +++ b/main/res/drawable/action_button_dark_selected.xml @@ -1,9 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#FFFFFFFF" - android:width="2px" /> - <solid - android:color="#22FFFFFF" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#FFFFFFFF" /> + + <solid android:color="#22FFFFFF" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/action_button_light.xml b/main/res/drawable/action_button_light.xml index 21d2310..b23b3b9 100644 --- a/main/res/drawable/action_button_light.xml +++ b/main/res/drawable/action_button_light.xml @@ -1,13 +1,10 @@ <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> - <item android:drawable="@drawable/action_button_light_pressed" - android:state_focused="true" android:state_pressed="true" /> - <item android:drawable="@drawable/action_button_light_pressed" - android:state_focused="false" android:state_pressed="true" /> - <item android:drawable="@drawable/action_button_light_selected" - android:state_focused="true" /> - <item android:drawable="@drawable/action_button_light_default" - android:state_focused="false" android:state_pressed="false" /> - <item android:drawable="@drawable/action_button_light_off" - android:state_enabled="false" /> + + <item android:drawable="@drawable/action_button_light_pressed" android:state_focused="true" android:state_pressed="true"/> + <item android:drawable="@drawable/action_button_light_pressed" android:state_focused="false" android:state_pressed="true"/> + <item android:drawable="@drawable/action_button_light_selected" android:state_focused="true"/> + <item android:drawable="@drawable/action_button_light_default" android:state_focused="false" android:state_pressed="false"/> + <item android:drawable="@drawable/action_button_light_off" android:state_enabled="false"/> + </selector>
\ No newline at end of file diff --git a/main/res/drawable/action_button_light_default.xml b/main/res/drawable/action_button_light_default.xml index a7ac6fb..08f87cc 100644 --- a/main/res/drawable/action_button_light_default.xml +++ b/main/res/drawable/action_button_light_default.xml @@ -1,9 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#66000000" - android:width="1px" /> - <solid - android:color="#11000000" /> + android:shape="rectangle" > + + <stroke + android:width="1px" + android:color="#66000000" /> + + <solid android:color="#11000000" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/action_button_light_off.xml b/main/res/drawable/action_button_light_off.xml index ad94267..d4038e2 100644 --- a/main/res/drawable/action_button_light_off.xml +++ b/main/res/drawable/action_button_light_off.xml @@ -1,9 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#44000000" - android:width="1px" /> - <solid - android:color="#33FFFFFF" /> + android:shape="rectangle" > + + <stroke + android:width="1px" + android:color="#44000000" /> + + <solid android:color="#33FFFFFF" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/action_button_light_pressed.xml b/main/res/drawable/action_button_light_pressed.xml index fd8a9fb..9428c54 100644 --- a/main/res/drawable/action_button_light_pressed.xml +++ b/main/res/drawable/action_button_light_pressed.xml @@ -1,9 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#FF000000" - android:width="2px" /> - <solid - android:color="#44000000" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#FF000000" /> + + <solid android:color="#44000000" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/action_button_light_selected.xml b/main/res/drawable/action_button_light_selected.xml index dbd5781..bc44988 100644 --- a/main/res/drawable/action_button_light_selected.xml +++ b/main/res/drawable/action_button_light_selected.xml @@ -1,9 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#FF000000" - android:width="2px" /> - <solid - android:color="#22000000" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#FF000000" /> + + <solid android:color="#22000000" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/actionbar_background.xml b/main/res/drawable/actionbar_background.xml index a7df2f4..31b8641 100644 --- a/main/res/drawable/actionbar_background.xml +++ b/main/res/drawable/actionbar_background.xml @@ -1,8 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> -<shape xmlns:android="http://schemas.android.com/apk/res/android"> - <gradient android:angle="270" - android:startColor="#313131" +<shape xmlns:android="http://schemas.android.com/apk/res/android" > + + <gradient + android:angle="270" android:centerColor="#191919" + android:centerY="0.92" android:endColor="#222" - android:centerY="0.92" /> -</shape> + android:startColor="#313131" /> + +</shape>
\ No newline at end of file diff --git a/main/res/drawable/actionbar_button.xml b/main/res/drawable/actionbar_button.xml index 85ce5a1..ec317e0 100644 --- a/main/res/drawable/actionbar_button.xml +++ b/main/res/drawable/actionbar_button.xml @@ -1,11 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> - <item android:drawable="@drawable/actionbar_button_pressed" - android:state_focused="true" android:state_pressed="true" /> - <item android:drawable="@drawable/actionbar_button_pressed" - android:state_focused="false" android:state_pressed="true" /> - <item android:drawable="@drawable/actionbar_button_selected" - android:state_focused="true" /> - <item android:drawable="@android:color/transparent" - android:state_focused="false" android:state_pressed="false" /> + + <item android:drawable="@drawable/actionbar_button_pressed" android:state_focused="true" android:state_pressed="true"/> + <item android:drawable="@drawable/actionbar_button_pressed" android:state_focused="false" android:state_pressed="true"/> + <item android:drawable="@drawable/actionbar_button_selected" android:state_focused="true"/> + <item android:drawable="@android:color/transparent" android:state_focused="false" android:state_pressed="false"/> + </selector>
\ No newline at end of file diff --git a/main/res/drawable/actionbar_button_pressed.xml b/main/res/drawable/actionbar_button_pressed.xml index 593caea..62e3070 100644 --- a/main/res/drawable/actionbar_button_pressed.xml +++ b/main/res/drawable/actionbar_button_pressed.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <solid - android:color="#44FFFFFF" /> + android:shape="rectangle" > + + <solid android:color="#44FFFFFF" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/actionbar_button_selected.xml b/main/res/drawable/actionbar_button_selected.xml index ece89e1..ebd32b2 100644 --- a/main/res/drawable/actionbar_button_selected.xml +++ b/main/res/drawable/actionbar_button_selected.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <solid - android:color="#22FFFFFF" /> + android:shape="rectangle" > + + <solid android:color="#22FFFFFF" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/actionbar_separator.xml b/main/res/drawable/actionbar_separator.xml index 72c42f9..a82b58e 100644 --- a/main/res/drawable/actionbar_separator.xml +++ b/main/res/drawable/actionbar_separator.xml @@ -1,8 +1,10 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <gradient - android:startColor="#44000000" - android:endColor="#AAFFFFFF" - android:angle="0" /> + android:shape="rectangle" > + + <gradient + android:angle="0" + android:endColor="#AAFFFFFF" + android:startColor="#44000000" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/count_bcg.xml b/main/res/drawable/count_bcg.xml index 8c7cde4..74cb594 100644 --- a/main/res/drawable/count_bcg.xml +++ b/main/res/drawable/count_bcg.xml @@ -1,14 +1,17 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#AAFFFFFF" - android:width="2px" /> - <solid - android:color="#FF990000" /> - <corners - android:bottomRightRadius="4dp" - android:bottomLeftRadius="4dp" - android:topLeftRadius="4dp" - android:topRightRadius="4dp" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#AAFFFFFF" /> + + <solid android:color="#FF990000" /> + + <corners + android:bottomLeftRadius="4dp" + android:bottomRightRadius="4dp" + android:topLeftRadius="4dp" + android:topRightRadius="4dp" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/favorite_background_dark.xml b/main/res/drawable/favorite_background_dark.xml index b8aa8d3..5e3a32f 100644 --- a/main/res/drawable/favorite_background_dark.xml +++ b/main/res/drawable/favorite_background_dark.xml @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#99FFFFFF" - android:width="2px" /> - <solid - android:color="#99FFFFFF" /> - <corners - android:bottomLeftRadius="5dip" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#99FFFFFF" /> + + <solid android:color="#99FFFFFF" /> + + <corners android:bottomLeftRadius="5dip" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/favorite_background_green_dark.xml b/main/res/drawable/favorite_background_green_dark.xml index 3e1b545..fd463bf 100644 --- a/main/res/drawable/favorite_background_green_dark.xml +++ b/main/res/drawable/favorite_background_green_dark.xml @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#99FFFFFF" - android:width="2px" /> - <solid - android:color="#9900FF00" /> - <corners - android:bottomLeftRadius="5dip" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#99FFFFFF" /> + + <solid android:color="#9900FF00" /> + + <corners android:bottomLeftRadius="5dip" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/favorite_background_green_light.xml b/main/res/drawable/favorite_background_green_light.xml index a2070e7..d3505cd 100644 --- a/main/res/drawable/favorite_background_green_light.xml +++ b/main/res/drawable/favorite_background_green_light.xml @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#99000000" - android:width="2px" /> - <solid - android:color="#9900FF00" /> - <corners - android:bottomLeftRadius="5dip" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#99000000" /> + + <solid android:color="#9900FF00" /> + + <corners android:bottomLeftRadius="5dip" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/favorite_background_light.xml b/main/res/drawable/favorite_background_light.xml index 60c0b2c..9f9741a 100644 --- a/main/res/drawable/favorite_background_light.xml +++ b/main/res/drawable/favorite_background_light.xml @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#99000000" - android:width="2px" /> - <solid - android:color="#99000000" /> - <corners - android:bottomLeftRadius="5dip" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#99000000" /> + + <solid android:color="#99000000" /> + + <corners android:bottomLeftRadius="5dip" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/favorite_background_orange_dark.xml b/main/res/drawable/favorite_background_orange_dark.xml index 8730487..9a06540 100644 --- a/main/res/drawable/favorite_background_orange_dark.xml +++ b/main/res/drawable/favorite_background_orange_dark.xml @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#99FFFFFF" - android:width="2px" /> - <solid - android:color="#99FFAA00" /> - <corners - android:bottomLeftRadius="5dip" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#99FFFFFF" /> + + <solid android:color="#99FFAA00" /> + + <corners android:bottomLeftRadius="5dip" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/favorite_background_orange_light.xml b/main/res/drawable/favorite_background_orange_light.xml index 89ef726..982ff7d 100644 --- a/main/res/drawable/favorite_background_orange_light.xml +++ b/main/res/drawable/favorite_background_orange_light.xml @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#99000000" - android:width="2px" /> - <solid - android:color="#99FFAA00" /> - <corners - android:bottomLeftRadius="5dip" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#99000000" /> + + <solid android:color="#99FFAA00" /> + + <corners android:bottomLeftRadius="5dip" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/favorite_background_red_dark.xml b/main/res/drawable/favorite_background_red_dark.xml index 2fb580e..4fd6a57 100644 --- a/main/res/drawable/favorite_background_red_dark.xml +++ b/main/res/drawable/favorite_background_red_dark.xml @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#99FFFFFF" - android:width="2px" /> - <solid - android:color="#99FF0000" /> - <corners - android:bottomLeftRadius="5dip" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#99FFFFFF" /> + + <solid android:color="#99FF0000" /> + + <corners android:bottomLeftRadius="5dip" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/favorite_background_red_light.xml b/main/res/drawable/favorite_background_red_light.xml index b16cb92..a8d6e14 100644 --- a/main/res/drawable/favorite_background_red_light.xml +++ b/main/res/drawable/favorite_background_red_light.xml @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#99000000" - android:width="2px" /> - <solid - android:color="#99FF0000" /> - <corners - android:bottomLeftRadius="5dip" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#99000000" /> + + <solid android:color="#99FF0000" /> + + <corners android:bottomLeftRadius="5dip" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/filter_bar_background.xml b/main/res/drawable/filter_bar_background.xml index 6cdfa46..72bc87a 100644 --- a/main/res/drawable/filter_bar_background.xml +++ b/main/res/drawable/filter_bar_background.xml @@ -1,18 +1,20 @@ <?xml version="1.0" encoding="utf-8"?> -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item> - <shape> - <solid android:color="#444"/> - </shape> - </item> - - <item android:bottom="1dp"> - <shape> - <gradient android:angle="270" - android:startColor="#000" - android:centerColor="#222" - android:centerY="0.1" - android:endColor="#222"/> - </shape> - </item> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <shape> + <solid android:color="#444" /> + </shape> + </item> + <item android:bottom="1dp"> + <shape> + <gradient + android:angle="270" + android:centerColor="#222" + android:centerY="0.1" + android:endColor="#222" + android:startColor="#000" /> + </shape> + </item> + </layer-list>
\ No newline at end of file diff --git a/main/res/drawable/helper_bcg.xml b/main/res/drawable/helper_bcg.xml index b30f9be..dc4c543 100644 --- a/main/res/drawable/helper_bcg.xml +++ b/main/res/drawable/helper_bcg.xml @@ -1,14 +1,17 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#99FFFFFF" - android:width="2px" /> - <solid - android:color="#FF191919" /> - <corners - android:bottomRightRadius="3dp" - android:bottomLeftRadius="3dp" - android:topLeftRadius="3dp" - android:topRightRadius="3dp" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#99FFFFFF" /> + + <solid android:color="#FF191919" /> + + <corners + android:bottomLeftRadius="3dp" + android:bottomRightRadius="3dp" + android:topLeftRadius="3dp" + android:topRightRadius="3dp" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/icon_bcg.xml b/main/res/drawable/icon_bcg.xml index 864d99a..3560650 100644 --- a/main/res/drawable/icon_bcg.xml +++ b/main/res/drawable/icon_bcg.xml @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <solid - android:color="#80000000" /> - <corners - android:bottomRightRadius="8dp" - android:bottomLeftRadius="8dp" - android:topLeftRadius="8dp" - android:topRightRadius="8dp" /> + android:shape="rectangle" > + + <solid android:color="#80000000" /> + + <corners + android:bottomLeftRadius="8dp" + android:bottomRightRadius="8dp" + android:topLeftRadius="8dp" + android:topRightRadius="8dp" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/input_bcg_dark.xml b/main/res/drawable/input_bcg_dark.xml index e7029d9..b5d5bc0 100644 --- a/main/res/drawable/input_bcg_dark.xml +++ b/main/res/drawable/input_bcg_dark.xml @@ -1,9 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#66FFFFFF" - android:width="1px" /> - <solid - android:color="#22000000" /> + android:shape="rectangle" > + + <stroke + android:width="1px" + android:color="#66FFFFFF" /> + + <solid android:color="#22000000" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/input_bcg_light.xml b/main/res/drawable/input_bcg_light.xml index f9cdae8..b482300 100644 --- a/main/res/drawable/input_bcg_light.xml +++ b/main/res/drawable/input_bcg_light.xml @@ -1,9 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#66000000" - android:width="1px" /> - <solid - android:color="#22FFFFFF" /> + android:shape="rectangle" > + + <stroke + android:width="1px" + android:color="#66000000" /> + + <solid android:color="#22FFFFFF" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/inventory_background_dark.xml b/main/res/drawable/inventory_background_dark.xml index fce3151..e618e47 100644 --- a/main/res/drawable/inventory_background_dark.xml +++ b/main/res/drawable/inventory_background_dark.xml @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#99FFFFFF" - android:width="2px" /> - <solid - android:color="#AA000000" /> - <corners - android:topLeftRadius="5dip" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#99FFFFFF" /> + + <solid android:color="#AA000000" /> + + <corners android:topLeftRadius="5dip" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/inventory_background_light.xml b/main/res/drawable/inventory_background_light.xml index 71486c7..631f1e6 100644 --- a/main/res/drawable/inventory_background_light.xml +++ b/main/res/drawable/inventory_background_light.xml @@ -1,11 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#99000000" - android:width="2px" /> - <solid - android:color="#AAFFFFFF" /> - <corners - android:topLeftRadius="5dip" /> + android:shape="rectangle" > + + <stroke + android:width="2px" + android:color="#99000000" /> + + <solid android:color="#AAFFFFFF" /> + + <corners android:topLeftRadius="5dip" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/main_any.xml b/main/res/drawable/main_any.xml index 43cf397..6d3ed14 100644 --- a/main/res/drawable/main_any.xml +++ b/main/res/drawable/main_any.xml @@ -1,11 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> - <item android:drawable="@drawable/main_any_pressed" - android:state_focused="true" android:state_pressed="true" /> - <item android:drawable="@drawable/main_any_pressed" - android:state_focused="false" android:state_pressed="true" /> - <item android:drawable="@drawable/main_any_selected" - android:state_focused="true" /> - <item android:drawable="@drawable/main_any_default" - android:state_focused="false" android:state_pressed="false" /> + + <item android:drawable="@drawable/main_any_pressed" android:state_focused="true" android:state_pressed="true"/> + <item android:drawable="@drawable/main_any_pressed" android:state_focused="false" android:state_pressed="true"/> + <item android:drawable="@drawable/main_any_selected" android:state_focused="true"/> + <item android:drawable="@drawable/main_any_default" android:state_focused="false" android:state_pressed="false"/> + </selector>
\ No newline at end of file diff --git a/main/res/drawable/main_any_pressed.xml b/main/res/drawable/main_any_pressed.xml index d24b74f..72a97f3 100644 --- a/main/res/drawable/main_any_pressed.xml +++ b/main/res/drawable/main_any_pressed.xml @@ -1,12 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item> - <bitmap android:src="@drawable/main_any_default" /> - </item> - <item android:top="1dp" - android:bottom="3dp" - android:left="2dp" - android:right="2dp"> - <inset android:drawable="@drawable/main_overlay_pressed" /> - </item> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <bitmap android:src="@drawable/main_any_default" /> + </item> + <item + android:bottom="3dp" + android:left="2dp" + android:right="2dp" + android:top="1dp"> + <inset android:drawable="@drawable/main_overlay_pressed" /> + </item> + </layer-list>
\ No newline at end of file diff --git a/main/res/drawable/main_any_selected.xml b/main/res/drawable/main_any_selected.xml index ff3aebf..4dec859 100644 --- a/main/res/drawable/main_any_selected.xml +++ b/main/res/drawable/main_any_selected.xml @@ -1,13 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item> - <bitmap android:src="@drawable/main_any_default" /> - </item> - <item - android:top="1dp" - android:bottom="3dp" - android:left="2dp" - android:right="2dp"> - <inset android:drawable="@drawable/main_overlay_selected" /> - </item> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <bitmap android:src="@drawable/main_any_default" /> + </item> + <item + android:bottom="3dp" + android:left="2dp" + android:right="2dp" + android:top="1dp"> + <inset android:drawable="@drawable/main_overlay_selected" /> + </item> + </layer-list>
\ No newline at end of file diff --git a/main/res/drawable/main_filter.xml b/main/res/drawable/main_filter.xml index 7deb1a3..89a3815 100644 --- a/main/res/drawable/main_filter.xml +++ b/main/res/drawable/main_filter.xml @@ -1,11 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> - <item android:drawable="@drawable/main_filter_pressed" - android:state_focused="true" android:state_pressed="true" /> - <item android:drawable="@drawable/main_filter_pressed" - android:state_focused="false" android:state_pressed="true" /> - <item android:drawable="@drawable/main_filter_selected" - android:state_focused="true" /> - <item android:drawable="@drawable/main_filter_default" - android:state_focused="false" android:state_pressed="false" /> + + <item android:drawable="@drawable/main_filter_pressed" android:state_focused="true" android:state_pressed="true"/> + <item android:drawable="@drawable/main_filter_pressed" android:state_focused="false" android:state_pressed="true"/> + <item android:drawable="@drawable/main_filter_selected" android:state_focused="true"/> + <item android:drawable="@drawable/main_filter_default" android:state_focused="false" android:state_pressed="false"/> + </selector>
\ No newline at end of file diff --git a/main/res/drawable/main_filter_pressed.xml b/main/res/drawable/main_filter_pressed.xml index dd76099..2b68c5b 100644 --- a/main/res/drawable/main_filter_pressed.xml +++ b/main/res/drawable/main_filter_pressed.xml @@ -1,12 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item> - <bitmap android:src="@drawable/main_filter_default" /> - </item> - <item android:top="1dp" - android:bottom="3dp" - android:left="2dp" - android:right="2dp"> - <inset android:drawable="@drawable/main_overlay_pressed" /> - </item> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <bitmap android:src="@drawable/main_filter_default" /> + </item> + <item + android:bottom="3dp" + android:left="2dp" + android:right="2dp" + android:top="1dp"> + <inset android:drawable="@drawable/main_overlay_pressed" /> + </item> + </layer-list>
\ No newline at end of file diff --git a/main/res/drawable/main_filter_selected.xml b/main/res/drawable/main_filter_selected.xml index fb1011b..e7bb381 100644 --- a/main/res/drawable/main_filter_selected.xml +++ b/main/res/drawable/main_filter_selected.xml @@ -1,13 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item> - <bitmap android:src="@drawable/main_filter_default" /> - </item> - <item - android:top="1dp" - android:bottom="3dp" - android:left="2dp" - android:right="2dp"> - <inset android:drawable="@drawable/main_overlay_selected" /> - </item> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <bitmap android:src="@drawable/main_filter_default" /> + </item> + <item + android:bottom="3dp" + android:left="2dp" + android:right="2dp" + android:top="1dp"> + <inset android:drawable="@drawable/main_overlay_selected" /> + </item> + </layer-list>
\ No newline at end of file diff --git a/main/res/drawable/main_live.xml b/main/res/drawable/main_live.xml index 9914a23..18bd82d 100644 --- a/main/res/drawable/main_live.xml +++ b/main/res/drawable/main_live.xml @@ -1,11 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> - <item android:drawable="@drawable/main_live_pressed" - android:state_focused="true" android:state_pressed="true" /> - <item android:drawable="@drawable/main_live_pressed" - android:state_focused="false" android:state_pressed="true" /> - <item android:drawable="@drawable/main_live_selected" - android:state_focused="true" /> - <item android:drawable="@drawable/main_live_default" - android:state_focused="false" android:state_pressed="false" /> + + <item android:drawable="@drawable/main_live_pressed" android:state_focused="true" android:state_pressed="true"/> + <item android:drawable="@drawable/main_live_pressed" android:state_focused="false" android:state_pressed="true"/> + <item android:drawable="@drawable/main_live_selected" android:state_focused="true"/> + <item android:drawable="@drawable/main_live_default" android:state_focused="false" android:state_pressed="false"/> + </selector>
\ No newline at end of file diff --git a/main/res/drawable/main_live_pressed.xml b/main/res/drawable/main_live_pressed.xml index c1d1692..a0b67ed 100644 --- a/main/res/drawable/main_live_pressed.xml +++ b/main/res/drawable/main_live_pressed.xml @@ -1,12 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item> - <bitmap android:src="@drawable/main_live_default" /> - </item> - <item android:top="1dp" - android:bottom="3dp" - android:left="2dp" - android:right="2dp"> - <inset android:drawable="@drawable/main_overlay_pressed" /> - </item> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <bitmap android:src="@drawable/main_live_default" /> + </item> + <item + android:bottom="3dp" + android:left="2dp" + android:right="2dp" + android:top="1dp"> + <inset android:drawable="@drawable/main_overlay_pressed" /> + </item> + </layer-list>
\ No newline at end of file diff --git a/main/res/drawable/main_live_selected.xml b/main/res/drawable/main_live_selected.xml index be028db..322bdbc 100644 --- a/main/res/drawable/main_live_selected.xml +++ b/main/res/drawable/main_live_selected.xml @@ -1,13 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item> - <bitmap android:src="@drawable/main_live_default" /> - </item> - <item - android:top="1dp" - android:bottom="3dp" - android:left="2dp" - android:right="2dp"> - <inset android:drawable="@drawable/main_overlay_selected" /> - </item> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <bitmap android:src="@drawable/main_live_default" /> + </item> + <item + android:bottom="3dp" + android:left="2dp" + android:right="2dp" + android:top="1dp"> + <inset android:drawable="@drawable/main_overlay_selected" /> + </item> + </layer-list>
\ No newline at end of file diff --git a/main/res/drawable/main_nearby.xml b/main/res/drawable/main_nearby.xml index 0d8e68e..29711c6 100644 --- a/main/res/drawable/main_nearby.xml +++ b/main/res/drawable/main_nearby.xml @@ -1,11 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> - <item android:drawable="@drawable/main_nearby_pressed" - android:state_focused="true" android:state_pressed="true" /> - <item android:drawable="@drawable/main_nearby_pressed" - android:state_focused="false" android:state_pressed="true" /> - <item android:drawable="@drawable/main_nearby_selected" - android:state_focused="true" /> - <item android:drawable="@drawable/main_nearby_default" - android:state_focused="false" android:state_pressed="false" /> + + <item android:drawable="@drawable/main_nearby_pressed" android:state_focused="true" android:state_pressed="true"/> + <item android:drawable="@drawable/main_nearby_pressed" android:state_focused="false" android:state_pressed="true"/> + <item android:drawable="@drawable/main_nearby_selected" android:state_focused="true"/> + <item android:drawable="@drawable/main_nearby_default" android:state_focused="false" android:state_pressed="false"/> + </selector>
\ No newline at end of file diff --git a/main/res/drawable/main_nearby_pressed.xml b/main/res/drawable/main_nearby_pressed.xml index 88f6689..2dc3cd4 100644 --- a/main/res/drawable/main_nearby_pressed.xml +++ b/main/res/drawable/main_nearby_pressed.xml @@ -1,12 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item> - <bitmap android:src="@drawable/main_nearby_default" /> - </item> - <item android:top="1dp" - android:bottom="3dp" - android:left="2dp" - android:right="2dp"> - <inset android:drawable="@drawable/main_overlay_pressed" /> - </item> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <bitmap android:src="@drawable/main_nearby_default" /> + </item> + <item + android:bottom="3dp" + android:left="2dp" + android:right="2dp" + android:top="1dp"> + <inset android:drawable="@drawable/main_overlay_pressed" /> + </item> + </layer-list>
\ No newline at end of file diff --git a/main/res/drawable/main_nearby_selected.xml b/main/res/drawable/main_nearby_selected.xml index 975adc8..c8abda4 100644 --- a/main/res/drawable/main_nearby_selected.xml +++ b/main/res/drawable/main_nearby_selected.xml @@ -1,13 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item> - <bitmap android:src="@drawable/main_nearby_default" /> - </item> - <item - android:top="1dp" - android:bottom="3dp" - android:left="2dp" - android:right="2dp"> - <inset android:drawable="@drawable/main_overlay_selected" /> - </item> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <bitmap android:src="@drawable/main_nearby_default" /> + </item> + <item + android:bottom="3dp" + android:left="2dp" + android:right="2dp" + android:top="1dp"> + <inset android:drawable="@drawable/main_overlay_selected" /> + </item> + </layer-list>
\ No newline at end of file diff --git a/main/res/drawable/main_overlay_pressed.xml b/main/res/drawable/main_overlay_pressed.xml index 58d070a..4ddedbb 100644 --- a/main/res/drawable/main_overlay_pressed.xml +++ b/main/res/drawable/main_overlay_pressed.xml @@ -1,8 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <corners android:radius="3dp" /> - <solid android:color="#44FFFFFF" /> - <stroke android:width="1dp" - android:color="#AAFFFFFF" /> + android:shape="rectangle" > + + <corners android:radius="3dp" /> + + <solid android:color="#44FFFFFF" /> + + <stroke + android:width="1dp" + android:color="#AAFFFFFF" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/main_overlay_selected.xml b/main/res/drawable/main_overlay_selected.xml index 200d2f4..d4802ac 100644 --- a/main/res/drawable/main_overlay_selected.xml +++ b/main/res/drawable/main_overlay_selected.xml @@ -1,8 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <corners android:radius="3dp" /> - <solid android:color="#22FFFFFF" /> - <stroke android:width="1dp" - android:color="#88FFFFFF" /> + android:shape="rectangle" > + + <corners android:radius="3dp" /> + + <solid android:color="#22FFFFFF" /> + + <stroke + android:width="1dp" + android:color="#88FFFFFF" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/main_search.xml b/main/res/drawable/main_search.xml index 681016d..279f160 100644 --- a/main/res/drawable/main_search.xml +++ b/main/res/drawable/main_search.xml @@ -1,11 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> - <item android:drawable="@drawable/main_search_pressed" - android:state_focused="true" android:state_pressed="true" /> - <item android:drawable="@drawable/main_search_pressed" - android:state_focused="false" android:state_pressed="true" /> - <item android:drawable="@drawable/main_search_selected" - android:state_focused="true" /> - <item android:drawable="@drawable/main_search_default" - android:state_focused="false" android:state_pressed="false" /> + + <item android:drawable="@drawable/main_search_pressed" android:state_focused="true" android:state_pressed="true"/> + <item android:drawable="@drawable/main_search_pressed" android:state_focused="false" android:state_pressed="true"/> + <item android:drawable="@drawable/main_search_selected" android:state_focused="true"/> + <item android:drawable="@drawable/main_search_default" android:state_focused="false" android:state_pressed="false"/> + </selector>
\ No newline at end of file diff --git a/main/res/drawable/main_search_pressed.xml b/main/res/drawable/main_search_pressed.xml index faf8119..cfac3f7 100644 --- a/main/res/drawable/main_search_pressed.xml +++ b/main/res/drawable/main_search_pressed.xml @@ -1,12 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item> - <bitmap android:src="@drawable/main_search_default" /> - </item> - <item android:top="1dp" - android:bottom="3dp" - android:left="2dp" - android:right="2dp"> - <inset android:drawable="@drawable/main_overlay_pressed" /> - </item> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <bitmap android:src="@drawable/main_search_default" /> + </item> + <item + android:bottom="3dp" + android:left="2dp" + android:right="2dp" + android:top="1dp"> + <inset android:drawable="@drawable/main_overlay_pressed" /> + </item> + </layer-list>
\ No newline at end of file diff --git a/main/res/drawable/main_search_selected.xml b/main/res/drawable/main_search_selected.xml index 2106760..51d7962 100644 --- a/main/res/drawable/main_search_selected.xml +++ b/main/res/drawable/main_search_selected.xml @@ -1,13 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item> - <bitmap android:src="@drawable/main_search_default" /> - </item> - <item - android:top="1dp" - android:bottom="3dp" - android:left="2dp" - android:right="2dp"> - <inset android:drawable="@drawable/main_overlay_selected" /> - </item> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <bitmap android:src="@drawable/main_search_default" /> + </item> + <item + android:bottom="3dp" + android:left="2dp" + android:right="2dp" + android:top="1dp"> + <inset android:drawable="@drawable/main_overlay_selected" /> + </item> + </layer-list>
\ No newline at end of file diff --git a/main/res/drawable/main_stored.xml b/main/res/drawable/main_stored.xml index 751ba8d..58747d1 100644 --- a/main/res/drawable/main_stored.xml +++ b/main/res/drawable/main_stored.xml @@ -1,11 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> - <item android:drawable="@drawable/main_stored_pressed" - android:state_focused="true" android:state_pressed="true" /> - <item android:drawable="@drawable/main_stored_pressed" - android:state_focused="false" android:state_pressed="true" /> - <item android:drawable="@drawable/main_stored_selected" - android:state_focused="true" /> - <item android:drawable="@drawable/main_stored_default" - android:state_focused="false" android:state_pressed="false" /> + + <item android:drawable="@drawable/main_stored_pressed" android:state_focused="true" android:state_pressed="true"/> + <item android:drawable="@drawable/main_stored_pressed" android:state_focused="false" android:state_pressed="true"/> + <item android:drawable="@drawable/main_stored_selected" android:state_focused="true"/> + <item android:drawable="@drawable/main_stored_default" android:state_focused="false" android:state_pressed="false"/> + </selector>
\ No newline at end of file diff --git a/main/res/drawable/main_stored_pressed.xml b/main/res/drawable/main_stored_pressed.xml index a74cf6d..63569cc 100644 --- a/main/res/drawable/main_stored_pressed.xml +++ b/main/res/drawable/main_stored_pressed.xml @@ -1,12 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item> - <bitmap android:src="@drawable/main_stored_default" /> - </item> - <item android:top="1dp" - android:bottom="3dp" - android:left="2dp" - android:right="2dp"> - <inset android:drawable="@drawable/main_overlay_pressed" /> - </item> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <bitmap android:src="@drawable/main_stored_default" /> + </item> + <item + android:bottom="3dp" + android:left="2dp" + android:right="2dp" + android:top="1dp"> + <inset android:drawable="@drawable/main_overlay_pressed" /> + </item> + </layer-list>
\ No newline at end of file diff --git a/main/res/drawable/main_stored_selected.xml b/main/res/drawable/main_stored_selected.xml index 08e178e..4ea625a 100644 --- a/main/res/drawable/main_stored_selected.xml +++ b/main/res/drawable/main_stored_selected.xml @@ -1,13 +1,15 @@ <?xml version="1.0" encoding="utf-8"?> -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> - <item> - <bitmap android:src="@drawable/main_stored_default" /> - </item> - <item - android:top="1dp" - android:bottom="3dp" - android:left="2dp" - android:right="2dp"> - <inset android:drawable="@drawable/main_overlay_selected" /> - </item> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" > + + <item> + <bitmap android:src="@drawable/main_stored_default" /> + </item> + <item + android:bottom="3dp" + android:left="2dp" + android:right="2dp" + android:top="1dp"> + <inset android:drawable="@drawable/main_overlay_selected" /> + </item> + </layer-list>
\ No newline at end of file diff --git a/main/res/drawable/map_close_dark.xml b/main/res/drawable/map_close_dark.xml index 794736e..cdb074e 100644 --- a/main/res/drawable/map_close_dark.xml +++ b/main/res/drawable/map_close_dark.xml @@ -1,9 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#FF000000" - android:width="1px" /> - <solid - android:color="#99000000" /> + android:shape="rectangle" > + + <stroke + android:width="1px" + android:color="#FF000000" /> + + <solid android:color="#99000000" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/map_close_light.xml b/main/res/drawable/map_close_light.xml index 92a3b9a..2b2944d 100644 --- a/main/res/drawable/map_close_light.xml +++ b/main/res/drawable/map_close_light.xml @@ -1,9 +1,11 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <stroke - android:color="#FFFFFFFF" - android:width="1px" /> - <solid - android:color="#99FFFFFF" /> + android:shape="rectangle" > + + <stroke + android:width="1px" + android:color="#FFFFFFFF" /> + + <solid android:color="#99FFFFFF" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/mark_gray.xml b/main/res/drawable/mark_gray.xml index 239739e..313ff9a 100644 --- a/main/res/drawable/mark_gray.xml +++ b/main/res/drawable/mark_gray.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <solid - android:color="#77777777" /> + android:shape="rectangle" > + + <solid android:color="#77777777" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/mark_green.xml b/main/res/drawable/mark_green.xml index 1d9ee4a..57bc7b0 100644 --- a/main/res/drawable/mark_green.xml +++ b/main/res/drawable/mark_green.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <solid - android:color="#FF009900" /> + android:shape="rectangle" > + + <solid android:color="#FF009900" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/mark_green_more.xml b/main/res/drawable/mark_green_more.xml index a1811d6..de3f374 100644 --- a/main/res/drawable/mark_green_more.xml +++ b/main/res/drawable/mark_green_more.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <solid - android:color="#FF00FF00" /> -</shape> + android:shape="rectangle" > + + <solid android:color="#FF00FF00" /> + +</shape>
\ No newline at end of file diff --git a/main/res/drawable/mark_green_orange.xml b/main/res/drawable/mark_green_orange.xml index 6985d18..fcde52e 100644 --- a/main/res/drawable/mark_green_orange.xml +++ b/main/res/drawable/mark_green_orange.xml @@ -1,8 +1,10 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> + android:shape="rectangle" > + <gradient - android:startColor="#FFFF7700" - android:endColor="#FF00FF00" - android:angle="90" /> -</shape> + android:angle="90" + android:endColor="#FF00FF00" + android:startColor="#FFFF7700" /> + +</shape>
\ No newline at end of file diff --git a/main/res/drawable/mark_orange.xml b/main/res/drawable/mark_orange.xml index d6734aa..db040a7 100644 --- a/main/res/drawable/mark_orange.xml +++ b/main/res/drawable/mark_orange.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <solid - android:color="#FFFF7700" /> + android:shape="rectangle" > + + <solid android:color="#FFFF7700" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/mark_red.xml b/main/res/drawable/mark_red.xml index 8f62833..c1fd0ac 100644 --- a/main/res/drawable/mark_red.xml +++ b/main/res/drawable/mark_red.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <solid - android:color="#FF990000" /> + android:shape="rectangle" > + + <solid android:color="#FF990000" /> + </shape>
\ No newline at end of file diff --git a/main/res/drawable/mark_red_more.xml b/main/res/drawable/mark_red_more.xml index b9e355e..fff50a7 100644 --- a/main/res/drawable/mark_red_more.xml +++ b/main/res/drawable/mark_red_more.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" - android:shape="rectangle"> - <solid - android:color="#FFFF0000" /> + android:shape="rectangle" > + + <solid android:color="#FFFF0000" /> + </shape>
\ No newline at end of file |
