`
zhangyf1987hb
  • 浏览: 83268 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

android 单选框实现

阅读更多

 

Radio.java

 

 

[java] view plaincopy
  1. package archie.android.activity;  
  2.   
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5. import android.view.Gravity;  
  6. import android.widget.RadioButton;  
  7. import android.widget.RadioGroup;  
  8. import android.widget.TextView;  
  9. import android.widget.Toast;  
  10.   
  11. public class Radio extends Activity {  
  12.     /** 
  13.      * 创建TextView对象 
  14.      * 创建RadioGroup对象 
  15.      * 创建4个RadioButton对象 
  16.      */  
  17.     TextView        m_TextView;  
  18.     RadioGroup      m_RadioGroup;  
  19.     RadioButton     m_Radio1, m_Radio2, m_Radio3, m_Radio4;  
  20.   
  21.   
  22.     /** Called when the activity is first created. */  
  23.     @Override  
  24.     public void onCreate(Bundle savedInstanceState)  
  25.     {  
  26.         super.onCreate(savedInstanceState);  
  27.         setContentView(R.layout.main);  
  28.   
  29.         /** 
  30.          * 获得TextView对象 
  31.          * 获得RadioGroup对象 
  32.          * 获得4个RadioButton对象 
  33.          */  
  34.         m_TextView = (TextView) findViewById(R.id.TextView01);  
  35.         m_RadioGroup = (RadioGroup) findViewById(R.id.RadioGroup01);  
  36.         m_Radio1 = (RadioButton) findViewById(R.id.RadioButton1);  
  37.         m_Radio2 = (RadioButton) findViewById(R.id.RadioButton2);  
  38.         m_Radio3 = (RadioButton) findViewById(R.id.RadioButton3);  
  39.         m_Radio4 = (RadioButton) findViewById(R.id.RadioButton4);  
  40.   
  41.         /* 设置事件监听  */  
  42.         m_RadioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {  
  43.             @Override  
  44.             public void onCheckedChanged(RadioGroup group, int checkedId)  
  45.             {  
  46.                 // TODO Auto-generated method stub  
  47.                 if (checkedId == m_Radio2.getId())  
  48.                 {  
  49.                     DisplayToast("正确答案:" + m_Radio2.getText() + ",恭喜你,回答正确!");  
  50.                 }  
  51.                 else  
  52.                 {  
  53.                     DisplayToast("请注意,回答错误!");  
  54.                 }  
  55.             }  
  56.         });  
  57.     }  
  58.       
  59.     /* 显示Toast  */  
  60.     public void DisplayToast(String str)  
  61.     {  
  62.         Toast toast = Toast.makeText(this, str, Toast.LENGTH_LONG);  
  63.         //设置toast显示的位置  
  64.         toast.setGravity(Gravity.TOP, 0220);  
  65.         //显示该Toast  
  66.         toast.show();  
  67.     }  
  68. }  

 

 

main.xml

 

 

[xhtml] view plaincopy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent"  
  6.     >  
  7.     <TextView    
  8.     android:id="@+id/TextView01"  
  9.     android:layout_width="fill_parent"   
  10.     android:layout_height="wrap_content"   
  11.     android:text="@string/hello"  
  12.     />  
  13.   <RadioGroup  
  14.     android:id="@+id/RadioGroup01"  
  15.     android:layout_width="wrap_content"  
  16.     android:layout_height="wrap_content"  
  17.     android:orientation="vertical"  
  18.     android:layout_x="3px"  
  19.     android:layout_y="54px"   
  20.     >  
  21.     <RadioButton  
  22.       android:id="@+id/RadioButton1"  
  23.       android:layout_width="wrap_content"  
  24.       android:layout_height="wrap_content"  
  25.       android:text="@string/RadioButton1"  
  26.     />  
  27.     <RadioButton  
  28.       android:id="@+id/RadioButton2"  
  29.       android:layout_width="wrap_content"  
  30.       android:layout_height="wrap_content"  
  31.       android:text="@string/RadioButton2"  
  32.     />  
  33.     <RadioButton  
  34.       android:id="@+id/RadioButton3"  
  35.       android:layout_width="wrap_content"  
  36.       android:layout_height="wrap_content"  
  37.       android:text="@string/RadioButton3"  
  38.     />  
  39.     <RadioButton  
  40.       android:id="@+id/RadioButton4"  
  41.       android:layout_width="wrap_content"  
  42.       android:layout_height="wrap_content"  
  43.       android:text="@string/RadioButton4"  
  44.     />  
  45.     </RadioGroup>      
  46. </LinearLayout>  

 

 

String.xml

 

 

[xhtml] view plaincopy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <resources>  
  3.     <string name="hello">Android底层是基于什么操作系统?</string>  
  4.     <string name="app_name">RadioButton</string>  
  5.     <string name="RadioButton1">Windows</string>  
  6.     <string name="RadioButton2">Linux</string>  
  7.     <string name="RadioButton3">Moc os</string>  
  8.     <string name="RadioButton4">Java</string>  
  9. </resources>  

 

 

 

分享到:
评论

相关推荐

    Android单选框例子

    本示例旨在为初学者提供一个简单的Android单选框使用案例,帮助理解其工作原理和基本用法。 单选框在Android中的实现主要依赖于`RadioButton`类,它继承自`CompoundButton`,提供了选中或未选中的状态。下面将详细...

    弹出单选框示例(android)

    总结,实现Android的弹出单选框示例涉及以下几个步骤: 1. 创建包含单选框的XML布局。 2. 在Activity或Fragment中找到单选框并设置监听器。 3. 使用AlertDialog.Builder创建弹出对话框,并设置布局和按钮事件。 4. ...

    Eclipse编写的Android单选框应用实例

    至此,我们已经完成了一个基本的Android单选框应用实例。这个例子展示了如何在Eclipse中创建、布局、监听和管理单选框,帮助用户在两个选项间进行选择。在实际应用中,你可以根据需求扩展这个例子,增加更多的单选框...

    android简单单选框测试

    在Android开发中,单选框(Radio Button)是一种常见的用户界面元素,用于让用户在多个选项中选择一个。本文将深入探讨如何在...在lession_6的学习中,你可以深入实践这些知识,进一步提升对Android单选框的掌握。

    单选框、复选框、下拉框的使用及跨页面传值

    在Android应用开发中,用户界面的设计至关重要,其中单选框(RadioButtons)、复选框(CheckBoxes)和下拉框(Spinner)是常见的交互元素,它们用于收集用户的选择信息或控制用户界面的状态。本教程将深入讲解这三种...

    android可无限嵌套选择的单选框

    在Android开发中,单选框(RadioButton)是用户界面中常用的一种组件,它允许用户在一组选项中选择一个。在某些场景下,我们可能需要创建一个可以无限嵌套的单选框选择结构,例如实现一个树形目录选择、层级菜单等。...

    android中淘宝类型选择的单选框和价格变动

    在Android开发中,淘宝类型的选择单选框和价格变动涉及到用户界面(UI)设计和数据交互,这在电商应用中是非常常见的功能。本篇将详细阐述如何实现这一特性。 首先,我们来了解一下`RadioButton`。在Android中,`...

    android 自定义单选按钮radioButton

    在Android开发中,自定义RadioButton主要是通过修改其外观和行为来实现。这包括调整XML布局中的属性、创建自定义图形、定义样式以及设置事件监听器。同时,RadioGroup组件可以帮助我们更好地管理和控制一组...

    Android studio APP开发 单选框和复选框

    单选框和复选框 单选按钮和复选按钮都是普通按钮Button的子类,所以可以使用所有Button的方法和属性。也有自己特有的属性方法 单选框 单选框就是在多个选项中只选择一个。 在Android中,单选按钮用RadioButton表示,...

    实现多行多列单选框(自定义控件)

    总之,实现多行多列单选框需要对Android UI框架有深入的理解,涉及到视图绘制、事件处理、布局管理等多个方面。通过这样的自定义控件,我们可以为用户提供更加符合项目需求的交互体验。如果你正在寻找如何实现这一...

    Android实现自由单选、复选按钮效果+样式美化

    在Android中用CheckBox+LinearLayout来实现一种多行单选按钮组的效果。效果图及讲解见:https://blog.csdn.net/ahuyangdong/article/details/82691961。github源码:https://github.com/ahuyangdong/SelectCustom

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

    android:text="自定义单选框" style="@style/CustomRadioButtonStyle"/&gt; ``` 这里,`style`属性引用了我们在`styles.xml`中定义的`CustomRadioButtonStyle`。 如果你想要在运行时动态改变`RadioButton`的图片,...

    android listView 单选 功能

    本文将详细探讨如何在Android中实现ListView的单选功能。 一、ListView的基础 ListView是Android SDK提供的一种视图组件,它能够以列表形式展示大量数据。通过适配器(Adapter)将数据与ListView的视图进行绑定,...

    Android checkbox 实现单选

    下面将详细介绍如何在Android中实现Checkbox的单选功能。 首先,我们需要理解Checkbox和RadioButton的区别。Checkbox是多选框,用户可以勾选多个,而RadioButton是单选按钮,用户只能选择其中一个。在单选需求下,...

    Android dialog单选、多选弹窗

    压缩包中的"Android自定义单选、多选对话框及popwindow窗口实例源码"应该包含了实现这些功能的具体Java或Kotlin代码。这些代码可能包括了Dialog的创建、数据绑定、事件监听等关键步骤,是学习和理解Dialog及...

    Android 系统自带单选按钮的listView

    在本教程中,我们将探讨如何在Android系统中利用ListView结合单选按钮(RadioButton)来实现一个功能性的选择列表,以及如何设置默认选中项。 首先,我们需要了解ListView的基本用法。ListView是Android SDK中的一...

    Android RadioButton单选框的使用方法

    在Android开发中,RadioButton是用于创建单选按钮的视图组件,它允许用户从一组选项中选择一个。在用户界面中,当用户点击一个RadioButton时,该按钮将被选中,而同一组内的其他RadioButton会自动取消选中。在本文中...

    ListViewRadioBtnDemo自定义单选框样式

    `ListViewRadioBtnDemo`这个项目显然是关于如何在ListView中实现自定义单选框样式的实例。在这个实例中,开发者可能通过自定义适配器(Adapter)和视图(View)来达到个性化的效果,以增强用户界面的交互性和视觉...

    android listview 单选(可适用4.0)

    本Demo通过两种途径实现了Listview的单选效果(自定义adapter) 1.点击Listview的item实现单选效果,就是...2.点击item上的单选框实现单选效果,就是点击单选框时,实现单选效果 3.点击Listview的item实现单选效果(改进版)

    Android 4.0 在GridLayout中模仿RadioButton单选按钮

    在Android开发中,有时我们需要在GridLayout布局中实现类似RadioButton单选功能,这在设计复杂的用户界面时非常有用。本文将详细讲解如何在Android 4.0版本中利用GridLayout模仿RadioButton的单选效果。 首先,了解...

Global site tag (gtag.js) - Google Analytics