Skip to content

Instantly share code, notes, and snippets.

@li2
Last active May 6, 2018 11:44
Show Gist options
  • Save li2/3ca3ec22d9c789004ea305c27ff01776 to your computer and use it in GitHub Desktop.
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
<?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