Last active
May 6, 2018 11:44
-
-
Save li2/3ca3ec22d9c789004ea305c27ff01776 to your computer and use it in GitHub Desktop.
Implement rounded rectangle (rectangles with rounded corners) background. Usage: android:background="@drawable/rounded_rectangle" #tags: android-view
This file contains hidden or 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"?> | |
<shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
<solid android:color="@color/white"/> | |
<padding | |
android:left="16dp" | |
android:top="4dp" | |
android:right="16dp" | |
android:bottom="4dp"/> | |
<corners | |
android:radius="2dp"/> | |
</shape> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment