selector选择器中的drawable无法改变大小。
但是在layer-list中却可以。
所以解决方案是 在layer-list中改变大小,后在selector中引用layer-list。
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:width="30dp" android:height="30dp" android:drawable="@drawable/adressbook_true"/>
</layer-list>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/bottom_adressbook_false" android:state_checked="false"/>
<item android:drawable="@drawable/bottom_adressbook_ture" android:state_checked="true"/>
</selector>