单选按钮选择更改Android上的Toast

时间:2010-04-29 19:23:58

标签: android radio-button

我正在编写一个简单的测试应用程序。应用程序中有两个单选按钮。 id是“radio_red”和“radio_blue”。我想创建一个onClickListener事件,该事件读取与该按钮关联的文本,然后返回一个基本的“右”或“错误”的吐司。

以下是代码示例:

private OnClickListener radio_listener = new OnClickListener() {
    public void onClick(View v){
        RadioButton rb = (RadioButton) v;
        String ans =  rb.getText().toString();
        String an1 = "";

        if (ans.trim() == "Yes") {
            ans = "That's Right.";
        }
            else if (ans.trim() == "No") {
                ans = "thats wrong.";
            }
            else {
                ans = "none.";
            }

        Toast.makeText(v.getContext(), ans , Toast.LENGTH_SHORT).show();
    }

到目前为止还没有快乐。这是我的代码片段。我已经检查了我的“main.xml”,并且正确地引用了与按钮相关联的文本。我添加了修剪来确保这一点。然而,在吐司中返回的所有内容都是“无”。我错过了什么?提前感谢您的帮助。

4 个答案:

答案 0 :(得分:6)

您想要处理RadioGroup,而不是RadioButtonRadioGroup可以告诉您有关无线电控件的更多元信息,例如检查哪一个。例如,在您的监听器中,您应该使用RadioGroup.getCheckedRadioButtonId()

或者,您可以使用RadioGroup.setOnCheckedChangeListener()向RadioGroup本身添加一个侦听器,该侦听器在后台设置切换。它能够告诉您哪个RadioButton被按下了。

答案 1 :(得分:6)

之前我遇到了同样的问题....我已经得到了适当的解决方案。

radioGroup1.setOnCheckedChangeListener(new OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(RadioGroup group, int checkedId) { 
                RadioButton radioButton = (RadioButton) findViewById(checkedId);
                Toast.makeText(Location.this, "" + radioButton.getText(), 2000).show(); 
            }
});

答案 2 :(得分:2)

我认为你在这里编写 Condition 时犯了一个错误,

ans.trim() == "Yes"

应该是,

ans.trim().equalsIgnoreCase("YES")

答案 3 :(得分:0)

package com.example.rediocheckbox;

import androidx.appcompat.app.AppCompatActivity;

import android.annotation.SuppressLint;
import android.location.Location;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {

    RadioGroup rad_grp;
    Button clear,submit;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        clear = findViewById(R.id.clear);
        submit = findViewById(R.id.submit);
        rad_grp = findViewById(R.id.rad_grp);
        rad_grp.clearCheck();


        rad_grp.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
            @SuppressLint("ResourceType")
            @Override
            public void onCheckedChanged(RadioGroup group, int checkedId) {

                RadioButton rb = group.findViewById(checkedId);
                if (null != rb && checkedId > -1)
                {
                Toast.makeText(MainActivity.this,rb.getText(), Toast.LENGTH_SHORT).show();
                }
                }
        });

        clear.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                rad_grp.clearCheck();
            }
        });

        submit.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                RadioButton rb = rad_grp.findViewById(rad_grp.getCheckedRadioButtonId());
                Toast.makeText(MainActivity.this,""+rb.getText().toString(),Toast.LENGTH_SHORT).show();
            }
        });
    }


}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <RadioGroup
        android:id="@+id/rad_grp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <RadioButton
            android:id="@+id/male"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Male"/>
        <RadioButton
            android:id="@+id/female"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Female"/>
        <RadioButton
            android:id="@+id/other"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Other"/>


    </RadioGroup>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp">

        <Button
            android:id="@+id/clear"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Clear"
            android:layout_marginLeft="20dp"/>

        <Button
            android:id="@+id/submit"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Submit"
            android:layout_marginLeft="20dp"/>

    </LinearLayout>



</LinearLayout>