Created
February 23, 2021 13:21
-
-
Save plateaukao/40c4e35377645d0adef5a4f286bb8814 to your computer and use it in GitHub Desktop.
An xml to support displaying white in black background, and black in white background.
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
<?xml version="1.0" encoding="utf-8"?> | |
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | |
<item> | |
<shape android:shape="rectangle"> | |
<padding | |
android:bottom="1dp" | |
android:left="1dp" | |
android:right="1dp" | |
android:top="1dp" /> | |
<solid android:color="@android:color/transparent"/> | |
<corners android:radius="40dp" /> | |
<stroke | |
android:width="1dp" | |
android:color="@android:color/white" | |
/> | |
</shape> | |
</item> | |
<item> | |
<shape android:shape="rectangle"> | |
<solid android:color="@android:color/transparent"/> | |
<corners android:radius="40dp" /> | |
<stroke | |
android:width="1dp" | |
android:color="@android:color/darker_gray" | |
/> | |
</shape> | |
</item> | |
</layer-list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment