Welcome to mirror list, hosted at ThFree Co, Russian Federation.

selected_check.xml « drawable « res « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60184ea5594619be0c1778a9e4cf060dcd726251 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:enterFadeDuration="@android:integer/config_shortAnimTime" android:state_selected="true">
        <layer-list>
            <item android:id="@+id/background">
                <shape android:shape="oval">
                    <solid android:color="@color/defaultBrand" />
                    <stroke android:width="1dp" android:color="@android:color/white" />
                </shape>
            </item>
            <item android:id="@+id/foreground" android:drawable="@drawable/circle_alpha_check_36dp" />
        </layer-list>
    </item>
</selector>