/
githubmirror
/
shadowsocks-android
Обзор
Документация
Войти
/
githubmirror
/
shadowsocks-android
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
mobile/src/main/res/drawable/background_profile.xml
25 строк
985 B
Mygod
Migrate to Android X (#1881)
16 июл 2018, 05:31
Не верифицирован
16 июл 2018, 05:31
f053a62
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape android:shape="rectangle"> <solid android:color="@color/background_stat" /> </shape> </item> <item> <selector android:enterFadeDuration="@android:integer/config_mediumAnimTime" android:exitFadeDuration="@android:integer/config_mediumAnimTime"> <item android:state_selected="true"> <shape android:shape="rectangle"> <solid android:color="@color/material_green_700" /> </shape> </item> </selector> </item> <!-- android:start not available until API 23 --> <item android:left="8dp"> <shape android:shape="rectangle"> <solid android:color="?android:colorBackground" /> </shape> </item> <item android:drawable="?android:attr/selectableItemBackground"/> </layer-list>