Skip to content

Instantly share code, notes, and snippets.

@yuanliwei
Created December 17, 2015 15:34
Show Gist options
  • Save yuanliwei/0e08ab2099daedacd8f5 to your computer and use it in GitHub Desktop.
Save yuanliwei/0e08ab2099daedacd8f5 to your computer and use it in GitHub Desktop.
Android 定义xml背景

Android 定义xml背景

  • background_drawable.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="false"><shape>
            <corners android:radius="5dp"/>
            <solid android:color="#FF0099FF"/>
        </shape></item>
    <item android:state_pressed="true"><shape>
            <corners android:radius="5dp"/>
            <solid android:color="#FF0077AA"/>
        </shape></item>
</selector>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment