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

bg_navdrawer_item.xml « drawable « res « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50924f287a3d6c9b259fa95dc426d5039e747f98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"
    android:left="@dimen/spacer_1x"
    android:right="@dimen/spacer_1x"
    android:top="@dimen/spacer_1hx"
    android:bottom="@dimen/spacer_1hx">

    <item android:state_selected="true">
        <shape android:shape="rectangle">
            <solid android:color="@color/bg_highlighted" />
        </shape>
    </item>

    <item>
        <shape android:shape="rectangle"/>
    </item>

</selector>