fixed StartTimeFragment crash on 720dp devices

This commit is contained in:
Peter Siegmund
2015-11-16 10:12:55 +01:00
parent 74acf502c2
commit 9a149bf283
3 changed files with 8 additions and 2 deletions
@@ -109,7 +109,7 @@
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:background="?button_filled_bordered"
android:drawableLeft="?attr/chevron_left"
android:drawableLeft="?chevron_left"
android:paddingRight="@dimen/default_padding_half"
android:textAppearance="?textLarge"
android:textColor="?white"
@@ -132,7 +132,7 @@
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:background="?button_filled_bordered"
android:drawableRight="?attr/chevron_right"
android:drawableRight="?chevron_right"
android:paddingLeft="@dimen/default_padding_half"
android:textAppearance="?textLarge"
android:textColor="?white"
@@ -2,6 +2,9 @@
<resources>
<style name="AppTheme.Dark.Custom" parent="Theme.AppCompat.NoActionBar">
<item name="chevron_left">@drawable/ic_chevron_left_white_36dp</item>
<item name="chevron_right">@drawable/ic_chevron_right_white_36dp</item>
<item name="flag_first_blue">@drawable/flag_first_blue_48dp_dark</item>
<item name="flags_abandon">@drawable/flags_abandon_96dp_dark</item>
@@ -2,6 +2,9 @@
<resources>
<style name="AppTheme.Light.Custom" parent="Theme.AppCompat.NoActionBar">
<item name="chevron_left">@drawable/ic_chevron_left_black_36dp</item>
<item name="chevron_right">@drawable/ic_chevron_right_black_36dp</item>
<item name="flag_first_blue">@drawable/flag_first_blue_48dp_light</item>
<item name="flags_abandon">@drawable/flags_abandon_96dp_light</item>