mirror of
https://github.com/proxidize/proxidize-android.git
synced 2026-05-26 07:08:10 +00:00
27 lines
829 B
XML
27 lines
829 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<selector
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item android:state_pressed="true">
|
|
<shape android:shape="rectangle">
|
|
<solid android:color="#F3E40D"/>
|
|
<corners
|
|
android:topRightRadius="20dp"
|
|
android:topLeftRadius="20dp"
|
|
android:bottomRightRadius="20dp"
|
|
android:bottomLeftRadius="20dp"/>
|
|
</shape>
|
|
</item>
|
|
|
|
<item>
|
|
<shape android:shape="rectangle">
|
|
<solid android:color="#Fff"/>
|
|
<corners
|
|
android:topRightRadius="20dp"
|
|
android:topLeftRadius="20dp"
|
|
android:bottomRightRadius="20dp"
|
|
android:bottomLeftRadius="20dp"/>
|
|
</shape>
|
|
</item>
|
|
|
|
</selector> |