Use mirrored drawables in RTL layouts
See https://github.com/FossifyOrg/Messages/issues/279
This commit is contained in:
parent
ddc0e8aa3c
commit
aca6e44355
2 changed files with 26 additions and 0 deletions
13
app/src/main/res/drawable-ldrtl/item_received_background.xml
Normal file
13
app/src/main/res/drawable-ldrtl/item_received_background.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shape="rectangle">
|
||||||
|
|
||||||
|
<corners
|
||||||
|
android:bottomLeftRadius="@dimen/big_margin"
|
||||||
|
android:bottomRightRadius="@dimen/small_margin"
|
||||||
|
android:topLeftRadius="@dimen/big_margin"
|
||||||
|
android:topRightRadius="@dimen/big_margin" />
|
||||||
|
|
||||||
|
<solid android:color="@color/activated_item_foreground" />
|
||||||
|
|
||||||
|
</shape>
|
||||||
13
app/src/main/res/drawable-ldrtl/item_sent_background.xml
Normal file
13
app/src/main/res/drawable-ldrtl/item_sent_background.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:shape="rectangle">
|
||||||
|
|
||||||
|
<corners
|
||||||
|
android:bottomLeftRadius="@dimen/small_margin"
|
||||||
|
android:bottomRightRadius="@dimen/big_margin"
|
||||||
|
android:topLeftRadius="@dimen/big_margin"
|
||||||
|
android:topRightRadius="@dimen/big_margin" />
|
||||||
|
|
||||||
|
<solid android:color="@color/color_primary" />
|
||||||
|
|
||||||
|
</shape>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue