2017-08-17 16:49:35 +02: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">
|
2017-08-18 10:22:57 +02:00
|
|
|
<solid android:color="@color/bg_color_light" />
|
|
|
|
<stroke android:color="@color/map_widget_blue_pressed" android:width="1dp"/>
|
2017-08-17 16:49:35 +02:00
|
|
|
<corners android:radius="@dimen/map_button_rect_rad" />
|
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
<item android:state_enabled="false">
|
|
|
|
<shape android:shape="rectangle">
|
2017-08-18 10:22:57 +02:00
|
|
|
<solid android:color="@color/bg_color_light" />
|
|
|
|
<stroke android:color="@color/searchbar_tab_inactive_light" android:width="1dp"/>
|
2017-08-17 16:49:35 +02:00
|
|
|
<corners android:radius="@dimen/map_button_rect_rad" />
|
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<shape android:shape="rectangle">
|
2017-08-18 10:22:57 +02:00
|
|
|
<solid android:color="@color/bg_color_light" />
|
|
|
|
<stroke android:color="@color/map_widget_blue" android:width="1dp"/>
|
2017-08-17 16:49:35 +02:00
|
|
|
<corners android:radius="@dimen/map_button_rect_rad" />
|
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
</selector>
|