当前位置:网站首页>Android Basics - RadioButton (radio button)
Android Basics - RadioButton (radio button)
2020-11-07 20:58:00 【ZHAO_JH】
==* Here we start to reference event handling , You need to read the post first 《android Basics - Event handling 》==
brief introduction
RadioButton Radio buttons are placed in RadioGroup Use in , Get layout page selection item data in the back end
RadioButton Object methods | paraphrase |
---|---|
getChildCount( ) | Get the number of radio buttons in the button group ; |
getChinldAt(i) | Get our radio button based on the index value |
isChecked( ) | Determine whether the button is selected |
getText() | Get value |
activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" Please choose gender "
android:textSize="23dp"
/>
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
android:id="@+id/btnMan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" male "
android:checked="true"/>
<RadioButton
android:id="@+id/btnWoman"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" Woman "/>
</RadioGroup>
<Button
android:id="@+id/btnpost"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="myclick"
android:text=" Submit "/>
</LinearLayout>
Listen to the button group ID Select trigger
MainActivity.java
package com.example.myapplication;
import android.app.Activity;
import android.os.Bundle;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Toast;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// preservation Activity The state of
super.onCreate(savedInstanceState);
// Load view
setContentView(R.layout.activity_main);
// Get radio button group object
RadioGroup radgroup = (RadioGroup) findViewById(R.id.radioGroup);
// Listen button
radgroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
// The radio button group object is passed in as a parameter , In order to get the radio object
public void onCheckedChanged(RadioGroup group, int checkedId) {
// Get radio objects
RadioButton radbtn = (RadioButton) findViewById(checkedId);
Toast.makeText(getApplicationContext(), " Button group value changes , You chose " + radbtn.getText(), Toast.LENGTH_LONG).show();
}
});
}
}
onClick Commit trigger
package com.example.myapplication;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Toast;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// preservation Activity The state of
super.onCreate(savedInstanceState);
// Load view
setContentView(R.layout.activity_main);
}
public void myclick(View source)
{
// Get radio button group object
RadioGroup radgroup = (RadioGroup) findViewById(R.id.radioGroup);
// Traverse the objects in the radio button group , Find a checked Object of property ( That is to find the selected object )
for (int i = 0; i < radgroup.getChildCount(); i++) {
RadioButton rd = (RadioButton) radgroup.getChildAt(i);
if (rd.isChecked()) {
Toast.makeText(getApplicationContext(), " Click Submit button , What you choose is :" + rd.getText(), Toast.LENGTH_LONG).show();
break;
}
}
}
}
版权声明
本文为[ZHAO_JH]所创,转载请带上原文链接,感谢
边栏推荐
- Recommend suicide, openai warns: gpt-3 is too risky for medical purposes
- Adobe media encoder /Me 2021软件安装包(附安装教程)
- 京淘项目day09
- 三步一坑五步一雷,高速成长下的技术团队怎么带?
- Python image recognition OCR
- ECMAScript7规范中的instanceof操作符
- Do not understand the underlying principle of database index? That's because you don't have a B tree in your heart
- GrowingIO 响应式编程探索和实践
- Writing method of field and field comparison condition in where condition in thinkphpp6
- How to learn technology efficiently
猜你喜欢
随机推荐
Web Security (3) -- CSRF attack
Design pattern of facade and mediator
WPF 关于绘图个人总结
Cpp(四) Boost安装及基本使用 for Mac
How to think in the way of computer
Web安全(二)---跨域资源共享
[random talk] the goal and way of software design
What is the relationship between low code vs model driven?
Improvement of maintenance mode of laravel8 update
面部识别:攻击类型和反欺骗技术
统计文本中字母的频次(不区分大小写)
虚拟DOM中给同一层级的元素设置固定且唯一的key为什么能提高性能
ngnix集群高并发
一万四千字分布式事务原理解析,全部掌握你还怕面试被问?
模型预测准确率高达94%!利用机器学习完美解决2000亿美元库存难题
Go之发送钉钉和邮箱
如何应对事关业务生死的数据泄露和删改?
The prediction accuracy of the model is as high as 94%! Using machine learning to solve the 200 billion dollar inventory problem perfectly
Web安全(一)---浏览器同源策略
Cpp(二) 创建Cpp工程