aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/drawable/button_rounded.xml
blob: f547b8cdb431e52b50518ebe89c5a4a4f8d75196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?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"  >
            <padding
                android:bottom="6dip"
                android:left="6dip"
                android:right="6dip"
                android:top="6dip" />
            <corners android:radius="6dip" />
            <stroke android:color="#cccccc" android:width="1.5dip" />
            <stroke android:color="#ebebeb" />
        </shape>
    </item>
    <item android:state_focused="true">
        <shape android:shape="rectangle"  >
            <padding
                android:bottom="6dip"
                android:left="6dip"
                android:right="6dip"
                android:top="6dip" />
            <corners android:radius="6dip" />
            <stroke android:color="#cccccc" android:width="1.5dip" />
            <solid android:color="#ebebeb"/>
        </shape>
    </item>
    <item >
        <shape android:shape="rectangle"  >
            <padding
                android:bottom="6dip"
                android:left="6dip"
                android:right="6dip"
                android:top="6dip" />
            <corners android:radius="6dip" />
            <stroke android:color="#cccccc" android:width="1.5dip" />
            <solid android:color="#ffffff" />
        </shape>
    </item>
</selector>