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

list_item_background_selector.xml « drawable-v21 « res « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea3fa3613302a65fa7e46f6ccefab326626ce0c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?><!-- Selector is used for Background Colors in List Items -->
<ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="@color/bg_highlighted">
    <!-- :selected -->


    <item>
        <selector>
            <item android:state_selected="true">
                <color android:color="@color/bg_highlighted" />
            </item>

            <item android:state_activated="true">
                <color android:color="@color/bg_highlighted" />
            </item>

            <item>
                <color android:color="@color/bg_normal" />
            </item>
        </selector>
    </item>
</ripple>