Android实现单项、多项选择操作

 更新时间:2016年04月29日 15:29:49   投稿:lijiao  
这篇文章主要介绍了Android实现单项、多项选择操作的相关资料,单项选择、多项选择操作在项目开发中经常应用,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Android实现单项、多项选择操作的相关代码,供大家参考,具体内容如下

1、单项选择
1.1.布局

<?xml version="1.0" encoding="utf-8"?> 
<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" 
 tools:context="com.rj141.sb.kongjian.DateActivity"> 
 
 
 <TextView 
  android:layout_marginLeft="10dp" 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="2+3=" 
  android:textSize="22dp" 
  /> 
 
 <RadioGroup 
  android:layout_marginLeft="20dp" 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content"> 
  <RadioButton 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:text="A.2" 
   android:id="@+id/rb1" 
   /> 
  <RadioButton 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:text="B.3" 
   android:id="@+id/rb2" 
   /> 
  <RadioButton 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:text="C.4" 
   android:id="@+id/rb3" 
   /> 
  <RadioButton 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:text="D.5" 
   android:id="@+id/rb4" 
   /> 
 </RadioGroup> 
 
 <Button 
  android:id="@+id/submit" 
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:text="提交"/> 
</LinearLayout>

 1.2.Java文件

public class SingChoose extends AppCompatActivity { 
 private Button btn; 
 private RadioButton rbD; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.sing_choose); 
 
  rbD= (RadioButton) this.findViewById(R.id.rb4); 
  btn= (Button) this.findViewById(R.id.submit); 
  btn.setOnClickListener(new View.OnClickListener() { 
   @Override 
   public void onClick(View v) { 
    if(rbD.isChecked()){ 
     Toast.makeText(SingChoose.this,"正确,请加五分",Toast.LENGTH_SHORT).show(); 
    } 
    else { 
     Toast.makeText(SingChoose.this,"错误,请减五分",Toast.LENGTH_SHORT).show(); 
    } 
   } 
  }); 
 } 
} 

效果图:

2多项选择
2.1.布局

<?xml version="1.0" encoding="utf-8"?> 
<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" 
 tools:context="com.rj141.sb.kongjian.CheckChoose"> 
 
 <TextView 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:textSize="20dp" 
  android:text="你喜欢下列哪些物品?" 
  /> 
 
 <CheckBox 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="巧克力" 
  android:id="@+id/cb1" /> 
 
 <CheckBox 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="冰淇淋" 
  android:id="@+id/cb2" /> 
 
 <CheckBox 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="蛋糕" 
  android:id="@+id/cb3" /> 
 
 <CheckBox 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="啤酒" 
  android:id="@+id/cb4" /> 
 
 <CheckBox 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="肉" 
  android:id="@+id/cb5" /> 
 
 <TextView 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:textSize="18dp" 
  android:id="@+id/tv" /> 
 
</LinearLayout> 

2.2.Java文件

public class CheckChoose extends AppCompatActivity implements CompoundButton.OnCheckedChangeListener { 
 
 private CheckBox cb1,cb2,cb3,cb4,cb5; 
 private TextView tv; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.check_choose); 
 
  tv= (TextView) this.findViewById(R.id.tv); 
  cb1= (CheckBox) this.findViewById(R.id.cb1); 
  cb2= (CheckBox) this.findViewById(R.id.cb2); 
  cb3= (CheckBox) this.findViewById(R.id.cb3); 
  cb4= (CheckBox) this.findViewById(R.id.cb4); 
  cb5= (CheckBox) this.findViewById(R.id.cb5); 
  cb1.setOnCheckedChangeListener(this); 
  cb2.setOnCheckedChangeListener(this); 
  cb3.setOnCheckedChangeListener(this); 
  cb4.setOnCheckedChangeListener(this); 
  cb5.setOnCheckedChangeListener(this); 
 } 
 
 @Override 
 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { 
  String str="您喜欢:"; 
  if(cb1.isChecked()){ 
   str+=cb1.getText()+","; 
  } 
  if(cb2.isChecked()){ 
   str+=cb2.getText()+","; 
  } 
  if(cb3.isChecked()){ 
   str+=cb3.getText()+","; 
  } 
  if(cb4.isChecked()){ 
   str+=cb4.getText()+","; 
  } 
  if(cb5.isChecked()){ 
   str+=cb5.getText()+","; 
  } 
  tv.setText(str); 
 } 
} 

效果图:

以上就是本文的全部内容,希望对大家学习Android软件编程有所帮助。

相关文章

  • Android对EditTex的图片实现监听

    Android对EditTex的图片实现监听

    这篇文章主要为大家详细介绍了Android如何对EditTex的图片实现监听,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-10-10
  • Android给app设置自定义铃声功能

    Android给app设置自定义铃声功能

    这篇文章主要为大家详细介绍了Android给app设置自定义铃声功能的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-01-01
  • kotlin中object关键字的三种使用场景

    kotlin中object关键字的三种使用场景

    这篇文章主要给大家介绍了关于kotlin中object关键字的三种使用场景,文中通过示例代码介绍的非常详细,对大家学习或者使用kotlin具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
    2020-06-06
  • Kotlin使用flow实现倒计时功能(示例详解)

    Kotlin使用flow实现倒计时功能(示例详解)

    这篇文章主要介绍了Kotlin使用flow实现倒计时功能,本文通过图文实例相结合给大家介绍的非常详细,感兴趣的朋友跟随小编一起看看吧
    2024-02-02
  • Android设备获取扫码枪扫描内容

    Android设备获取扫码枪扫描内容

    这篇文章主要为大家详细介绍了Android设备获取扫码枪扫描内容,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-09-09
  • 项目发布Debug和Release版的区别详解

    项目发布Debug和Release版的区别详解

    这篇文章主要为大家详细介绍了项目发布Debug和Release版的区别,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-10-10
  • android实现raw文件夹导入数据库代码

    android实现raw文件夹导入数据库代码

    这篇文章主要介绍了android实现raw文件夹导入数据库代码,有需要的朋友可以参考一下
    2013-12-12
  • Android界面设计(APP设计趋势 左侧隐藏菜单右边显示content)

    Android界面设计(APP设计趋势 左侧隐藏菜单右边显示content)

    这文章讲述了2013年未来的移动APP设计趋势,感觉挺有道理的:Android界面设计实现左侧隐藏菜单右边显示content,感兴趣的你可以了解下啊,希望本文对你的APP设计提高有所帮助哦
    2013-01-01
  • Android编程中FileOutputStream与openFileOutput()的区别分析

    Android编程中FileOutputStream与openFileOutput()的区别分析

    这篇文章主要介绍了Android编程中FileOutputStream与openFileOutput()的区别,结合实例形式分析了FileOutputStream与openFileOutput()的功能,使用技巧与用法区别,需要的朋友可以参考下
    2016-02-02
  • Android TextView高级显示技巧实例小结

    Android TextView高级显示技巧实例小结

    这篇文章主要介绍了Android TextView高级显示技巧,结合实例形式总结分析了Android TextView控件进行文字与图片显示的相关操作技巧,需要的朋友可以参考下
    2016-10-10

最新评论