http://postimage.org/image/kozoe83p3/这就是标签应该是
的方式但 http://postimage.org/image/4vlzpclhp 这是发生了什么的屏幕截图,有2个不同大小的图像,重叠在一起,它是一个单选按钮,带选择器
main.xml中
<RadioButton
android:id="@+id/second"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.16"
android:background="@drawable/button_radio"
android:height="70dip" />
button_radio.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/tab_final" android:state_checked="true"/>
<item android:drawable="@drawable/tab_deselect"/>
</selector>
tab_final是图片(我问题中的第一个链接)
我已经尝试过真正难以删除中间的那个小图像(显示在第二个网址)但它不会去,任何想法???