请问android 编程中可不可以自定义单选框,怎样实现。谢谢!

 我来答
浅浅半4dab
推荐于2017-09-24 · TA获得超过617个赞
知道小有建树答主
回答量:352
采纳率:100%
帮助的人:373万
展开全部

  单选框(RadioButton)继承Button

android:checked属性,该属性用于指定他们初始时是否被选中。

代码如下:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TableRow>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="性别:"
            android:textSize="10pt" />

        <!-- 定义一组单选按钮 -->

        <RadioGroup
            android:id="@+id/rp"
            android:layout_gravity="center_horizontal"
            android:orientation="horizontal" >

            <RadioButton
                android:id="@+id/male"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="男"
                android:checked="true">
            </RadioButton>

            <RadioButton
                android:id="@+id/female"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="女" >
            </RadioButton>
        </RadioGroup>
    </TableRow>

    <TableRow>

效果如下:

h1040106051
推荐于2017-09-09 · TA获得超过496个赞
知道小有建树答主
回答量:292
采纳率:100%
帮助的人:88.8万
展开全部
可以,使用style就行了,自定义style后就可以去掉自带的圆圈圈,在设置背景的时候会使用到shape,使用shape设置按下状态等等
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
羊三问
2012-12-07 · TA获得超过183个赞
知道小有建树答主
回答量:139
采纳率:0%
帮助的人:90.8万
展开全部
一般都是用两张图片来做的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式