`
qianlong1207
  • 浏览: 36536 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

android_radioButton自学

 
阅读更多

main.xml

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

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />
	<RadioGroup
	    android:layout_width="fill_parent"
	    android:layout_height="wrap_content"
	    android:id="@+id/genderRg">
	    
	    <RadioButton 
	        android:layout_width="wrap_content"
	    	android:layout_height="wrap_content"
	   	 	android:id="@+id/maleRb"
	   	 	android:text="@string/maleTxt"/>
	    <RadioButton 
	        android:layout_width="wrap_content"
	    	android:layout_height="wrap_content"
	   	 	android:id="@+id/femaleRb"
	   	 	android:text="@string/femaleTxt"/>
	</RadioGroup>
</LinearLayout>

 

strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="hello">性别选择</string>
    <string name="app_name">RadioButton</string>
    <string name="maleTxt">男</string>
    <string name="femaleTxt">女</string>

</resources>

 

RadioButtonActivity.java

package com.qianlong.activity;

import android.app.Activity;
import android.os.Bundle;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.RadioGroup.OnCheckedChangeListener;
import android.widget.Toast;

public class RadioButtonActivity extends Activity {
	private RadioGroup genderRg;
	private RadioButton maleRb;
	private RadioButton femaleRb;
	
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        this.genderRg = (RadioGroup) this.findViewById(R.id.genderRg);
        this.maleRb = (RadioButton) this.findViewById(R.id.maleRb);
        this.femaleRb = (RadioButton) this.findViewById(R.id.femaleRb);
        
        this.genderRg.setOnCheckedChangeListener(new OnCheckedChangeListener() {
			
			@Override
			public void onCheckedChanged(RadioGroup group, int checkedId) {
				int maleRbId = RadioButtonActivity.this.maleRb.getId();
				int femaleRbId = RadioButtonActivity.this.femaleRb.getId();
				String youchecked = "您选择了:";
				if(maleRbId == checkedId) {
					youchecked += "男";
					Toast.makeText(RadioButtonActivity.this, youchecked, Toast.LENGTH_SHORT).show();
				}
				if(femaleRbId == checkedId) {
					youchecked += "女";
					Toast.makeText(RadioButtonActivity.this, youchecked, Toast.LENGTH_SHORT).show();
				}
			}
		});
    }
}
 
分享到:
评论

相关推荐

    Android_实例_利用RadioButton实现分类筛选

    在Android开发中,RadioButton是用户界面(UI)设计中一种常用的组件,用于创建单选按钮。这类组件通常用于提供一组可选项,用户只能选择其中的一个。在这个实例中,“利用RadioButton实现分类筛选”意味着我们将...

    Android入门程序_RadioButton的使用

    在Android开发中,RadioButton是单选按钮控件,常用于实现一组选项中的单选功能,让用户从多个选项中选择一个。本教程将深入探讨如何在Android应用中使用RadioButton及其相关组件,以帮助初学者理解其基本用法和高级...

    android 自定义RadioButton的样式

    ### Android自定义RadioButton的样式 在Android开发过程中,经常需要对UI进行个性化定制来满足不同应用的需求或提高用户体验。RadioButton是一种常用的控件,用于表示一组互斥的选择项。默认情况下,Android提供的...

    自定义android RadioButton样式

    android:progressDrawable="@drawable/radioButton_progress" android:background="@drawable/custom_radiobutton" /&gt; ``` 最后,如果你有一个名为`FTPUploadPicWithProgress - 副本`的文件,这可能是一个示例...

    Android:解决RadioGroup中RadioButton的图片自定义及每项间隔距离一样

    &lt;item android:drawable="@drawable/radiobutton_unselected" android:state_checked="false"/&gt; ``` 这里,@drawable/radiobutton_selected和@drawable/radiobutton_unselected分别是你为选中和未选中状态准备的...

    Python GUI编程(第一部分) 10_Radiobutton_Checkbutton详解.mp4

    Python GUI编程(第一部分) 10_Radiobutton_Checkbutton详解.mp4

    android 自定义单选按钮radioButton

    在Android开发中,单选按钮(RadioButton)是用户界面中常用的一种组件,它通常用于提供一组互斥的选择项,用户只能选择其中的一项。本教程将深入探讨如何在Android中自定义RadioButton,使其满足特定的设计需求。 ...

    Android_UI.rar_android_android gis_android 控件_android ui_java

    常见的视图组件包括按钮(Button)、文本框(EditText)、图像视图(ImageView)、复选框(CheckBox)、单选按钮(RadioButton)、进度条(ProgressBar)等。视图组如线性布局(LinearLayout)、相对布局...

    android RadioGroup RadioButton左边显示文字

    android中RadioButton的图标在左边,文字在右边,如何实现文字在左边,图标在右边? 第一步:将RadioButton自带的图标隐藏, 第二步:在隐藏图标的右边添加系统的图标 第三步:在隐藏图标的位置显示文字. 具体参考: ...

    Android_ui.zip_android_android 界面_android ui_android 界面_android

    控件是用户界面的基本元素,包括按钮(Button)、文本输入框(EditText)、复选框(CheckBox)、单选按钮(RadioButton)、图片(ImageView)等。它们提供了用户与应用交互的途径,例如按钮可以响应点击事件,文本...

    Android中单选框RadioButton修改默认图片

    在Android开发中,`RadioButton`是用户界面中常见的一种组件,用于实现单选功能,即在多个选项中只能选择一个。在默认情况下,`RadioButton`显示一个小圆点,表示当前选中的状态。然而,为了满足特定的设计需求,...

    Android_API_android.widget.rar_android_android api

    这个压缩包“Android_API_android.widget.rar”显然是一个关于`android.widget`包的资源集合,特别是针对中文开发者,提供了方便的API参考文档。其中的“Android_API_android.widget.chm”文件可能是一个CHM帮助文档...

    单选框确认选择文件或文件夹(radioButton1选择文件_radioButton2选择文件夹).rar

    在C#编程中,开发用户界面时经常需要处理用户的输入选择,这通常涉及到控件的交互,例如单选按钮(RadioButton)。"单选框确认选择文件或文件夹(radioButton1选择文件_radioButton2选择文件夹).rar"这个压缩包文件中...

    单选框确认选择文件或文件夹(radioButton1选择文件_radioButton2选择文件夹).zip

    本项目中,我们有两个单选按钮:`radioButton1` 和 `radioButton2`,分别用于选择文件和文件夹。下面将详细介绍如何使用C#实现这一功能。 1. **单选按钮控件**: 在Windows Forms应用程序中,`RadioButton` 控件...

    JDGL.rar_GRoupBox_RadioButton_Through the Window_treeview_客房

    master GroupBox, SingleLineEdit, CommandButton, RadioButton, PictureButton controls such as the similarities and differences to further understanding of data objects window displays various occasions...

    Android_Cn_Doc.rar_android_翻译

    《Android_Cn_Doc.rar_android_翻译》是一个针对Android开发者的资源,包含了50篇精心翻译的中文API文档,特别是对`android.widget`命名空间下的众多类和接口进行了详尽的解释。这些文档对于理解并熟练运用Android ...

    Android_UI.rar_Android_UI_android_ui

    3. **控件(Widgets)**:Android提供了大量内置控件,如按钮(Button)、文本框(EditText)、图片按钮(ImageButton)、单选按钮(RadioButton)、复选框(CheckBox)等。了解这些控件的用法和属性调整是UI设计的...

    RadioButton的使用

    RadioButton的个人调查 android:id="@+id/ib1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="上一题" android:textSize="15dp" /&gt; android:id="@+id/ib2" ...

    Android 重写RadioButton,模仿QQ消息气泡

    &lt;com.triman.android.ui.MyRadioButton android:id="@+id/rb_sys_set" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:button="@null" android:...

    android的RadioButton生成选项卡

    原来在用android的TabHost生成的选项卡时有一定的局限性,它不能很好地用布局控制,而我转而采用android的RadioButton来生成选项卡并实现选项卡功能,并且这个代码还实现了ViewFlipper实现选项卡根据手势左右滑动的...

Global site tag (gtag.js) - Google Analytics