mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
76ac95756f
Apparently, it's not possible to reference an attribute in an xml drawable on API <21, so we have to use separate light and dark theme drawables instead. Closes #6285
8 lines
319 B
XML
8 lines
319 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
|
|
<solid android:color="@color/white"/>
|
|
|
|
<corners android:radius="65dp"/>
|
|
<padding android:bottom="10dp" android:left="15dp" android:right="15dp" android:top="10dp"/>
|
|
</shape>
|