OsmAnd/OsmAnd/res/drawable/btn_flat_transparent.xml

13 lines
626 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">
2015-04-21 00:38:20 +02:00
<solid android:color="@color/map_widget_dark_pressed" />
2015-03-14 23:30:53 +01:00
<stroke android:width="@dimen/map_button_stroke" android:color="@color/map_widget_stroke" />
</shape></item>
<item><shape android:shape="rectangle">
2015-03-26 22:24:41 +01:00
<solid android:color="@color/color_transparent" />
2015-03-14 23:30:53 +01:00
<stroke android:width="@dimen/map_button_stroke" android:color="@color/map_widget_stroke" />
</shape></item>
</selector>