mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-02 20:02:03 +00:00
Pretty up the attachment drawer a little.
1) Rounded corners on the image. 2) A circle X on top of the image, rather than a remove button. 3) Quick 200ms fade on clear. Closes #3439 // FREEBIE
This commit is contained in:
21
res/drawable/conversation_attachment_close_circle.xml
Normal file
21
res/drawable/conversation_attachment_close_circle.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item>
|
||||
<shape android:shape="oval">
|
||||
<size android:height="24dp" android:width="24dp"/>
|
||||
<solid android:color="@color/white"/>
|
||||
</shape>
|
||||
</item>
|
||||
<item>
|
||||
<shape android:shape="oval">
|
||||
<size android:height="21dp" android:width="21dp"/>
|
||||
<solid android:color="@color/textsecure_primary_dark"/>
|
||||
<stroke android:color="@android:color/transparent"
|
||||
android:width="3dp"/>
|
||||
</shape>
|
||||
</item>
|
||||
<item>
|
||||
<bitmap android:src="@drawable/ic_clear_white_24dp"
|
||||
android:gravity="center" />
|
||||
</item>
|
||||
</layer-list>
|
||||
Reference in New Issue
Block a user