0

我想从单选按钮组内的单选按钮文本中检索一个值。这听起来很简单,但我无法让它工作,因为它总是给我一个空值。

这是我的代码:

public class NewMovie extends FragmentActivity {    
RadioGroup rating;
RadioButton selectedRating;
int selectedRatingIndex;

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.new_movie_layout);
        rating = (RadioGroup) findViewById(R.id.rating);
        onClickListenerButton();
}

public void onClickListenerButton()
{
    selectedRatingIndex = rating.getCheckedRadioButtonId();
    final RadioButton selectedRating = (RadioButton) findViewById(selectedRatingIndex);
    intent.putExtra("rating", selectedRating.getText().toString());
    setResult(RESULT_OK, intent);
    finish();
}
}

XML:

        <RadioButton
            android:id="@+id/U"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/U" />

        <RadioButton
            android:id="@+id/PG"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/PG" />

        <RadioButton
            android:id="@+id/r12"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/r12" />

        <RadioButton
            android:id="@+id/r15"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/r15" />

        <RadioButton
            android:id="@+id/r18"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/r18" />
    </RadioGroup>

由于某种原因,总是出现 nullpointerexception。

不知道它是否有助于上下文,但我试图从活动 1 转到活动 2,在活动 2(我在上面显示的那个)中显示无线电组,然后用户提交其中一个答案,然后答案是用于活动 1。

4

1 回答 1

0

您必须在单选按钮中添加默认选择,尝试如下,

  1. 将所有单选按钮放在 xml 中的单选组中

    <RadioGroup
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
    
          <RadioButton
            android:id="@+id/U"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/U"
            android:checked="true" />  // deafult select
    
            //other radio buttons  
    </RadioGroup>
    
  2. 启动活动中的所有单选按钮

    radioU=(RadioButton) findViewById(R.id.U);
    
  3. 检查按钮单击事件中的选择

    public void onClickListenerButton(View v) {
    
    if(radioU.isChecked())
    {
        intent.putExtra("rating", getResources().getString(R.string.U));    
    }
    else if(radioPG.isChecked())
    {
        intent.putExtra("rating", getResources().getString(R.string.PG));   
    }
    
    setResult(RESULT_OK, intent);
    finish();
    }
    
于 2015-04-05T06:29:04.703 回答