-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use mirrored drawables in RTL layouts
See #279
- Loading branch information
1 parent
ddc0e8a
commit aca6e44
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
app/src/main/res/drawable-ldrtl/item_received_background.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |