2.为RadioButton设置drawable样式_android radiobutton背景图">
当前位置:   article > 正文

android-RadioButton背景使用图片_android radiobutton背景图

android radiobutton背景图

1.定义drawable样式

drawable/style_button_subject.xml如下:

<?xml version="1.0" encoding="utf-8"?>
<selector
    xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_checked="false" android:drawable="@drawable/buttonsubject_1"/>
    <item android:state_checked="true"  android:drawable="@drawable/buttonsubject_2"/>
    <item android:state_selected="true"  android:drawable="@drawable/buttonsubject_2"/>
    <item android:state_pressed="true"  android:drawable="@drawable/buttonsubject_2"/>

</selector>


2.为RadioButton设置drawable样式

        <RadioButton
        android:id="@+id/buttonsubject11"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="85"
        android:button="@null"
        android:gravity="center"
        android:textSize="@dimen/buttonSubjectTextSize"
        android:background="@drawable/style_button_subject"
        />


这样就得到了可以拉伸的图片作为背景的RatioButton

注意要设置android:button="@null",否则还是会有一个可以选择的圈圈出现

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/648724
推荐阅读
相关标签
  

闽ICP备14008679号