mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
27 lines
856 B
XML
27 lines
856 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:innerRadiusRatio="3"
|
|
android:shape="ring"
|
|
android:thickness="2dp"
|
|
android:useLevel="false" >
|
|
<solid android:color="@android:color/white" />
|
|
<size
|
|
android:height="52dp"
|
|
android:width="52dp" />
|
|
</shape>
|
|
</item>
|
|
<item>
|
|
<shape
|
|
android:innerRadiusRatio="3"
|
|
android:shape="ring"
|
|
android:thickness="2dp"
|
|
android:useLevel="false" >
|
|
<solid android:color="#40ffffff" />
|
|
<size
|
|
android:height="52dp"
|
|
android:width="52dp" />
|
|
</shape>
|
|
</item>
|
|
</selector> |