Skip to content

Instantly share code, notes, and snippets.

@pablophg
Created January 16, 2015 11:28
Show Gist options
  • Save pablophg/eb0cd9ab66b2f2727779 to your computer and use it in GitHub Desktop.
Save pablophg/eb0cd9ab66b2f2727779 to your computer and use it in GitHub Desktop.
Android button with round corners
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#eeffffff" />
<corners android:bottomRightRadius="8dip"
android:bottomLeftRadius="8dip"
android:topRightRadius="8dip"
android:topLeftRadius="8dip"/>
</shape>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment