RadioGroup的点击事件

本文介绍如何在Android中使用RadioGroup及RadioButton组件,并通过代码示例展示了如何设置点击事件来切换不同的界面或功能模块。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

使用代码启动其点击事件
           布局如下:         
<pre class="html" name="code"><RadioGroup
            android:id="@+id/rg_ownergroup"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="center_vertical"
            android:orientation="horizontal" >

            <RadioButton
                android:id="@+id/rb_tab_owner"
                style="@style/main_tab_bottom"
                android:background="@color/transparent"
                android:drawableTop="@drawable/selector_owner_group"
                android:text="圈子" />

            <RadioButton
                android:id="@+id/rb_tab_forum"
                style="@style/main_tab_bottom"
                android:background="@color/transparent"
                android:drawableTop="@drawable/selector_luntan"
                android:text="论坛" />

            <RadioButton
                android:id="@+id/rb_tab_message"
                style="@style/main_tab_bottom"
                android:background="@color/transparent"
                android:drawableTop="@drawable/selector_owner_nearby"
                android:text="通知" />

            <RadioButton
                android:id="@+id/rb_tab_my"
                style="@style/main_tab_bottom"
                android:background="@color/transparent"
                android:drawableTop="@drawable/selector_owner_my"
                android:text="我" />
        </RadioGroup>
初始化控件:
         rg_main = (RadioGroup) findViewById(R.id.rg_ownergroup);
         rb_tab_owner = (RadioButton) findViewById(R.id.rb_tab_owner);
         rb_tab_forum = (RadioButton) findViewById(R.id.rb_tab_forum);
         rb_tab_message = (RadioButton) findViewById(R.id.rb_tab_message);
         rb_tab_my = (RadioButton) findViewById(R.id.rb_tab_my);
 
主要代码就两句:
         rg_main.setOnCheckedChangeListener(onCheckedChangeListener);
         rb_tab_owner.setChecked(true);  
 
         或者rb_tab_owner.setChecked(true);可变为:
        onCheckedChangeListener.onCheckedChanged(rg_main,R.id.rb_tab_owner);


                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值