mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-11 19:55:03 -05:00
15 lines
365 B
XML
15 lines
365 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:shape="rectangle" >
|
||
|
|
||
|
<corners android:radius="2dp" />
|
||
|
|
||
|
<padding
|
||
|
android:bottom="1.5dp"
|
||
|
android:left="1.5dp"
|
||
|
android:right="1.5dp"
|
||
|
android:top="1.5dp" />
|
||
|
|
||
|
<solid android:color="@color/divider" />
|
||
|
|
||
|
</shape>
|