我有像图像一样的布局。并且每个项目中的RadioGroup内有多个单选按钮。每个单选按钮对应于保存在arraylist中的特定id。我需要获取所有单选按钮的选择值,并在按钮的单击事件内的活动类中单击按钮上的所有无线电组。是否有任何有效的技术来实现我的目标。
答案 0 :(得分:1)
如果你在xml中使用radiogroup那么 您只能在xml中处理click事件
<?xml version="1.0" encoding="utf-8"?>
<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RadioButton android:id="@+id/radio_pirates"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/pirates"
android:onClick="onRadioButtonClicked"/>
<RadioButton android:id="@+id/radio_ninjas"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/ninjas"
android:onClick="onRadioButtonClicked"/>
</RadioGroup>
并且在你的行为中(主持布局)处理onclick,因为这个
public void onRadioButtonClicked(View view) {
// Is the button now checked?
boolean checked = ((RadioButton) view).isChecked();
// Check which radio button was clicked
switch(view.getId()) {
case R.id.radio_pirates:
if (checked)
// Pirates are the best
break;
case R.id.radio_ninjas:
if (checked)
// Ninjas rule
break;
}
}
正如您所看到的,它正在考虑您在布局中提到的ID。 现在变得容易了。
警告: 1.方法的返回类型应该是无效的。
方法的名称应与xml中提供的名称相同。
它应该具有View类的参数视图。
至于效率,您只需设置相同的ClickListener对象。所以效率很高。