组单选按钮

发布于 2024-11-27 14:14:35 字数 1011 浏览 0 评论 0原文

我在组中有 3 个单选按钮,我想在单击单选按钮时调用意图,但是当我单击单选按钮时,我遇到了异常,并且我无法找出我遇到的异常类型。

这是我的代码。

public class Contentstory extends Activity {

    RadioButton Child,Adult,Animated ;
    RadioGroup radiogroup1;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.content);

        radiogroup1 = (RadioGroup) findViewById(R.id.radioGroup1);
        final RadioButton Child = (RadioButton)findViewById(R.id.radio0);

       radiogroup1.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {

            public void onCheckedChanged(RadioGroup group, int checkedId) {

                if (Child.isChecked()){

        Intent intent = new Intent(getApplicationContext(),StoryList.class);
        Contentstory.this.startActivity(intent);


                }


            }

        });   

https://i.sstatic.net/c9bqe.jpg

I have 3 radio button in group and I want to call intent on click of radio button but when I clicked on radio button I got exception and I'm not able to find out what kind of exception I'm getting.

Here is my code.

public class Contentstory extends Activity {

    RadioButton Child,Adult,Animated ;
    RadioGroup radiogroup1;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.content);

        radiogroup1 = (RadioGroup) findViewById(R.id.radioGroup1);
        final RadioButton Child = (RadioButton)findViewById(R.id.radio0);

       radiogroup1.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {

            public void onCheckedChanged(RadioGroup group, int checkedId) {

                if (Child.isChecked()){

        Intent intent = new Intent(getApplicationContext(),StoryList.class);
        Contentstory.this.startActivity(intent);


                }


            }

        });   

https://i.sstatic.net/c9bqe.jpg

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

︶ ̄淡然 2024-12-04 14:14:35
  1. 无需调用 radiogroup1 = (RadioGroup) findViewById(R.id.radioGroup1);

  2. 正确检查单选按钮的 id,因为您的代码没有显示错误,

  3. 发布异常,然后我将能够检查 id 出了什么问题?

  1. No need to call radiogroup1 = (RadioGroup) findViewById(R.id.radioGroup1);

  2. Check id of radio button correctly as your code showing no error,

  3. Post exception then i will be able to check what's going wrong with id?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文