background_course_hot_search.xml 751 Bytes
Newer Older
严久程 committed
1 2 3 4 5 6
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingDefaultResource">


    <item android:state_enabled="true" android:state_selected="true">
        <shape android:shape="rectangle">
konghaorui committed
7
            <solid android:color="@color/platform_main_theme_bright" />
严久程 committed
8
            <corners android:radius="11dp" />
konghaorui committed
9
            <stroke android:width="0.5dp" android:color="@color/platform_main_theme" />
严久程 committed
10 11 12 13 14
        </shape>
    </item>
    <item android:state_enabled="true">
        <shape>
            <corners android:radius="11dp" />
严久程 committed
15
            <solid android:color="@color/course_color_F5F5F5" />
严久程 committed
16 17 18 19
        </shape>
    </item>

</selector>