Android Studio:使用Intent ERROR NullPointerException传递RadioButtons

时间:2016-01-06 02:43:25

标签: java android-studio nullpointerexception radio-button radio-group

我是初学者,所以我提前道歉 运行此程序时出现以下错误:

java.lang.NullPointerException: Attempt to invoke virtual method 'int android.widget.RadioGroup.getCheckedRadioButtonId()' on a null object reference

这是我的“测验”代码

public class Quiz extends Activity {
Button btn;
RadioGroup rg;
RadioButton rb1;
RadioButton rb2;
RadioButton rb3;
RadioButton rb4;

然后低于:2

“测验”的xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<RadioGroup
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:id="@+id/rg">
<RadioButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Option 1"
    android:id="@+id/rb1"
    android:layout_marginBottom="55dp"
    android:layout_above="@+id/rb2"
    android:layout_centerHorizontal="true"
    android:checked="false" />

<RadioButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Option 2"
    android:id="@+id/rb2"
    android:layout_above="@+id/rb3"
    android:layout_alignLeft="@+id/rb1"
    android:layout_alignStart="@+id/rb1"
    android:layout_marginBottom="58dp"
    android:checked="false" />

<RadioButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Option 3"
    android:id="@+id/rb3"
    android:layout_above="@+id/rb4"
    android:layout_alignLeft="@+id/rb2"
    android:layout_alignStart="@+id/rb2"
    android:layout_marginBottom="57dp"
    android:checked="false" />

<RadioButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Option 4"
    android:id="@+id/rb4"
    android:layout_marginBottom="71dp"
    android:layout_alignParentBottom="true"
    android:layout_alignLeft="@+id/rb3"
    android:layout_alignStart="@+id/rb3"
    android:checked="false" />
</RadioGroup>
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:text="Question:"
    android:id="@+id/textView3"
    android:layout_marginTop="39dp"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true" />

<Button
    style="?android:attr/buttonStyleSmall"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Next"
    android:id="@+id/nextBtn"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true" />

第二项活动(测验1):3

感谢任何帮助谢谢你们很多&lt; 3

2 个答案:

答案 0 :(得分:1)

RadioGroup rg在调用getCheckedRadioButtonId()之前需要一个init步骤来检查RadioButton。

像这样:

RadioGroup rg;
RadioButton rb1;
rg = ....
rb1 = ....
// check a RadioButton first
rg.check(R.id.rb1);

并确保您的ID在&#34; findViewByid&#34;方法类似于布局Xml中RadioGroup的id。

答案 1 :(得分:0)

问题是,您不能在Quiz1课程中初始化您的RadioGroup按钮 radioGroup