btn.setCompoundDrawablesWithIntrinsicBounds(R.drawable.icon_galley_comment, 0, 0,0);
四个参数分别是左上右下四个方向的图片全设为0则为不设图片
设置布局文件 点击图片选择器
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@mipmap/tab4_down" android:state_checked="true"></item>
<item android:drawable="@mipmap/tab4"></item>
</selector> 文字颜色选择器
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="#ffff8761" android:state_checked="true"> </item> <item android:color="#000"> </item>
</selector> 风格设定
<resources> <!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
<!-- 主页面RadioButton做Tab-->
<!-- 使用Parent.Child形式定义属性名称-->
<style name="AppTheme.MainTabItem">
<item name="android:layout_width">0dp</item>
<item name="android:layout_weight">1</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:gravity">center</item>
<item name="android:button">@null</item>
<item name="android:textColor">@color/main_tab_item_text_color</item>
</style>
</resources>
style.xml
具体使用
<RadioButton
android:checked="true"
android:id="@+id/main_tab_item_discover"
android:text="发现"
android:drawableTop="@drawable/tab_discover"
style="@style/AppTheme.MainTabItem"
/>