当前位置:网站首页>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]所创,转载请带上原文链接,感谢
边栏推荐
- 使用 Xunit.DependencyInjection 改造测试项目
- Deep into web workers (1)
- Adobe media encoder /Me 2021软件安装包(附安装教程)
- Get started, GIT
- Summary of the resumption of a 618 promotion project
- 当 TiDB 与 Flink 相结合:高效、易用的实时数仓
- 洞察——风格注意力网络(SANet)在任意风格迁移中的应用
- 什么都2020了,LINQ查询你还在用表达式树
- 手撕算法-手写单例模式
- Let's talk about the locks in the database
猜你喜欢

What do you think of the most controversial programming ideas?

Kubernetes服务类型浅析:从概念到实践

Principles of websocket + probuf

A detailed explanation of microservice architecture

30岁后,你还剩下什么?

C language I blog assignment 03

Go之发送钉钉和邮箱

use Xunit.DependencyInjection Transformation test project

Big data algorithm - bloon filter

What kind of technical ability should a programmer who has worked for 1-3 years? How to improve?
随机推荐
Insight -- the application of sanet in arbitrary style transfer
Annual salary of 900000 programmers is not as good as 3800 civil servants a month? How to choose between stability and high income?
ROS learning: remote start ROS node
Web Security (4) -- XSS attack
The most hard core of the whole network explains the computer startup process
Web安全(四)---XSS攻击
【解决方案】分布式定时任务解决方案
A detailed explanation of microservice architecture
It's time to end bertology
编程界大佬教你:一行Python代码能做出哪些神奇的事情?
数据库基本操作
Reflection on a case of bus card being stolen and swiped
Search and replace of sed
某618大促项目的复盘总结
android基础-RadioButton(单选按钮)
The emergence and significance of micro service
京淘项目day09
Assembly function MCALL systemstack asmcgocal system call
On the concurrency of update operation
计组-总线通信控制之异步串行通信的数据传输
