diff options
| author | dankoman <dankoman30@gmail.com> | 2014-09-05 16:24:17 +0200 |
|---|---|---|
| committer | LorDClockaN <davor@losinj.com> | 2014-09-08 16:19:41 +0200 |
| commit | 452e04684a7129c012ffd9ad7bad263e2577a9b0 (patch) | |
| tree | 7ff0281448dfbe6d9bb2b48334854cfbdc55f63b | |
| parent | 4bce0f143317ac4c08afd7994a4740a0e399ea63 (diff) | |
datetimepicker: Fix white done button for TRDS landscape view
Fixes the white background for the "Done" button in the
date picker dialog and time picker dialog while in
landscape orientation and TRDS is on.
Change-Id: I53bf02a21f0bb8a223aca75bb9c658c9a4bc7ef8
| -rw-r--r-- | res/drawable-land/done_background_color.xml | 4 | ||||
| -rw-r--r-- | res/layout-land/date_picker_dialog.xml | 4 | ||||
| -rw-r--r-- | res/layout-land/time_picker_dialog.xml | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/res/drawable-land/done_background_color.xml b/res/drawable-land/done_background_color.xml index b2acf46..0634530 100644 --- a/res/drawable-land/done_background_color.xml +++ b/res/drawable-land/done_background_color.xml @@ -21,5 +21,5 @@ <item android:state_pressed="true" android:drawable="@color/blue" /> - <item android:drawable="@color/white" /> -</selector>
\ No newline at end of file + <item android:drawable="@color/circle_background" /> +</selector> diff --git a/res/layout-land/date_picker_dialog.xml b/res/layout-land/date_picker_dialog.xml index 99b882f..3eccb14 100644 --- a/res/layout-land/date_picker_dialog.xml +++ b/res/layout-land/date_picker_dialog.xml @@ -24,7 +24,7 @@ android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_gravity="center" - android:background="@color/white" + android:background="@color/circle_background" android:orientation="vertical" > <LinearLayout @@ -48,4 +48,4 @@ <include layout="@layout/date_picker_view_animator" /> -</LinearLayout>
\ No newline at end of file +</LinearLayout> diff --git a/res/layout-land/time_picker_dialog.xml b/res/layout-land/time_picker_dialog.xml index ed167af..b1c2840 100644 --- a/res/layout-land/time_picker_dialog.xml +++ b/res/layout-land/time_picker_dialog.xml @@ -33,7 +33,7 @@ android:layout_width="match_parent" android:layout_height="0dip" android:layout_weight="1" - android:background="@color/white" > + android:background="@color/circle_background" > <include layout="@layout/time_header_label" android:layout_width="match_parent" |
