32 lines
979 B
XML
32 lines
979 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item android:drawable="@drawable/messenger_button_send_round_shadow"/>
|
|
<item
|
|
android:left="1dp"
|
|
android:top="1dp"
|
|
android:right="1dp"
|
|
android:bottom="2dp">
|
|
<selector>
|
|
<item android:state_pressed="true">
|
|
<shape android:shape="oval">
|
|
<solid android:color="#1f8eff"/>
|
|
</shape>
|
|
</item>
|
|
<item>
|
|
<shape android:shape="oval">
|
|
<solid android:color="#0084ff"/>
|
|
</shape>
|
|
</item>
|
|
</selector>
|
|
</item>
|
|
<item
|
|
android:left="1dp"
|
|
android:top="1dp"
|
|
android:right="1dp"
|
|
android:bottom="2dp">
|
|
<bitmap
|
|
android:gravity="center"
|
|
android:src="@drawable/messenger_bubble_large_white"/>
|
|
</item>
|
|
</layer-list>
|