24 lines
801 B
XML
24 lines
801 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<selector xmlns:android="http://schemas.android.com/apk/res/android"
|
|
>
|
|
<item android:state_enabled="false">
|
|
<shape android:shape="rectangle" >
|
|
<corners android:bottomLeftRadius="@dimen/five" />
|
|
<solid android:color="@color/line_gray" />
|
|
</shape>
|
|
</item>
|
|
<item android:state_pressed="true">
|
|
<shape android:shape="rectangle" >
|
|
<corners android:bottomLeftRadius="@dimen/five" />
|
|
<solid android:color="#f1f1f1" />
|
|
</shape>
|
|
</item>
|
|
<!-- <solid android:color="@color/fm_card_default_bg_color" /> -->
|
|
<item >
|
|
<shape android:shape="rectangle" >
|
|
<corners android:bottomLeftRadius="@dimen/five" />
|
|
<solid android:color="@android:color/white" />
|
|
</shape>
|
|
</item>
|
|
</selector>
|