summaryrefslogtreecommitdiff
path: root/res/drawable/focus_square_button.xml
blob: bed0c5778a463b00d934bce818650daafb82b35d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- pressed state -->
    <item android:state_pressed="true">
        <shape android:shape="rectangle">
            <size android:width="80dp" android:height="80dp"/>
            <stroke android:width="2dp" android:color="#FFFFFF00"/>
            <solid android:color="#00FFFFFF"/>
        </shape>

    </item>

    <item>
        <shape android:shape="rectangle">
            <size android:width="80dp" android:height="80dp"/>
            <stroke android:width="0.5dp" android:color="#FFFFFF00"/>
            <solid android:color="#00FFFFFF"/>
        </shape>
    </item>

</selector>