aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/res/drawable/list_item_background.xml
blob: f82df249870946be99f5cee8fdcbce2e150933a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- TODO(msf): somehow make an additional activated color entry here (or elsewhere?) that
                    is in use only in multiselect mode, and one that's in use only in ordinary
		    select mode. In otherwords, we don't want to use the same background color
		    for both multiselect and normal select (on two column machines).
    -->
    <item android:drawable="@color/list_item_activated" android:state_activated="true" /> <!-- TODO(msf): get color from theme with ?android/attr: -->
    <item android:drawable="@android:color/transparent" /> <!-- TODO(msf): get color from theme with ?android/attr: -->
</selector>