日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

RadioGroup和RadioButton(单选框)

發(fā)布時(shí)間:2025/3/20 编程问答 20 豆豆
生活随笔 收集整理的這篇文章主要介紹了 RadioGroup和RadioButton(单选框) 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

?

1.布局文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"android:paddingBottom="@dimen/activity_vertical_margin"android:paddingLeft="@dimen/activity_horizontal_margin"android:paddingRight="@dimen/activity_horizontal_margin"android:paddingTop="@dimen/activity_vertical_margin"tools:context=".MainActivity" ><RadioGroupandroid:id="@+id/radioGroup1"android:layout_width="wrap_content"android:orientation="horizontal"android:layout_height="wrap_content" ><RadioButtonandroid:id="@+id/radio0"android:layout_width="wrap_content"android:layout_height="wrap_content"android:checked="true"android:text="男" /><RadioButtonandroid:id="@+id/radio1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="女" /></RadioGroup></LinearLayout>

?

?

2.綁定事件(實(shí)現(xiàn)接口,注意導(dǎo)包)

package com.example.test2;import android.app.Activity; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.widget.Button; import android.widget.CheckBox; import android.widget.CompoundButton; import android.widget.RadioGroup; import android.widget.RadioGroup.OnCheckedChangeListener;public class MainActivity extends Activity implements OnCheckedChangeListener {private Button login_button;private Button reset;private RadioGroup rg;private Button other;private CheckBox checkBox1;private Button myButton;/** @Override protected void onCreate(Bundle savedInstanceState) {* super.onCreate(savedInstanceState);* setContentView(R.layout.activity_radiobutton);* * login_button = (Button) this.findViewById(R.id.loginButton); checkBox1 =* (CheckBox) findViewById(R.id.checkBox1);* checkBox1.setOnCheckedChangeListener(new OnCheckedChangeListener() {* * @Override public void onCheckedChanged(CompoundButton arg0, boolean arg1)* { // arg1代表是否選中 Log.i("tag", arg1 + ""); if (arg1) { Log.i("tag",* checkBox1.getText().toString()); }* * } }); }*/// 單選框 @Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_radiobutton);rg = (RadioGroup) this.findViewById(R.id.radioGroup1);rg.setOnCheckedChangeListener(this);}@Overridepublic boolean onCreateOptionsMenu(Menu menu) {// Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu);return true;}@Overridepublic void onCheckedChanged(RadioGroup arg0, int checkId) {// TODO Auto-generated method stubswitch(checkId){case R.id.radio0:Log.i("tag", "當(dāng)前選中男");break ;case R.id.radio1:Log.i("tag", "當(dāng)前選中女");break ;default:break ;}}}

?

3.效果:

?

?

?

總結(jié)

以上是生活随笔為你收集整理的RadioGroup和RadioButton(单选框)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。