OsmAnd/OsmAnd/res/drawable/btn_right_round_night.xml

18 lines
895 B
XML
Raw Normal View History

2015-03-14 23:30:53 +01:00
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"><shape android:shape="rectangle">
<solid android:color="@color/map_widget_dark_pressed" />
<corners android:radius="@dimen/map_button_rect_rad" />
2015-04-20 23:42:11 +02:00
<stroke android:width="@dimen/map_button_stroke_dark" android:color="@color/map_widget_dark_stroke" />
2015-03-14 23:30:53 +01:00
</shape></item>
<item><shape android:shape="rectangle">
<solid android:color="@color/map_widget_dark" />
<corners
android:topRightRadius="@dimen/map_button_rect_rad"
android:bottomRightRadius="@dimen/map_button_rect_rad"
/>
2015-04-20 23:42:11 +02:00
<stroke android:width="@dimen/map_button_stroke_dark" android:color="@color/map_widget_dark_stroke" />
2015-03-14 23:30:53 +01:00
</shape></item>
</selector>