Skip to content

Instantly share code, notes, and snippets.

@jp1017
Created August 23, 2016 07:34
Show Gist options
  • Save jp1017/b7899636f6a459492cba7b33f291c3be to your computer and use it in GitHub Desktop.
Save jp1017/b7899636f6a459492cba7b33f291c3be to your computer and use it in GitHub Desktop.
通用button背景
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape>
<solid android:color="@color/powderblue"/>
<corners android:radius="@dimen/space_5"/>
</shape>
</item>
<item android:state_pressed="false">
<shape>
<solid android:color="@color/white"/>
<corners android:radius="@dimen/space_5"/>
<stroke
android:width="1dp"
android:color="#e5e5e5" />
</shape>
</item>
</selector>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment