1.btn_back.xml,先定义相关的点击样式文件
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/img_ic_button_back_select" android:state_pressed="true"/>
<item android:drawable="@drawable/img_ic_button_back" android:state_enabled="true"/>
</selector>
2.再style.xml 中配置
<style name="style_btn_back">
<item name="android:background">@drawable/btn_back</item>
<item name="android:layout_width">50dp</item>
<item name="android:layout_height">match_parent</item>
<item name="android:layout_marginRight">2dp</item>
</style>
3.直接应用该样式
<<Button
android:id="@+id/index_btn_back"
style="@style/style_btn_back"
android:text="back" />