我在RadioButton
中有五个Activity x
小部件,在Activity y
中有五个方法。我想为每个RadioButton
分配一个特定方法,因此当用户在Activity x
中选择一个按钮时,Activity y
中的方法已实现
答案 0 :(得分:2)
首先,我建议进一步阅读以确保您完全理解此代码的输出。
您需要在布局文件中创建RadioGroup和RadioButton小部件。
<RadioGroup
android:layout_width="fill_parent"
android:layout_height="90dp"
android:layout_below="@+id/imageView"
android:layout_marginTop="58dp"
android:weightSum="1"
android:id="@+id/radioGroup"
android:layout_alignLeft="@+id/textView2"
android:layout_alignStart="@+id/textView2"
android:layout_alignRight="@+id/textView3"
android:layout_alignEnd="@+id/textView3">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="55dp"
android:text="Male"
android:id="@+id/radioButton"
android:layout_gravity="center_horizontal"
android:checked="false"
android:textSize="25dp" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Female"
android:id="@+id/radioButton2"
android:layout_gravity="center_horizontal"
android:checked="false"
android:textSize="25dp"
android:layout_weight="0.13" />
</RadioGroup>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button"
android:layout_gravity="center_horizontal"
android:layout_below="@+id/radioGroup"
android:layout_centerHorizontal="true" />
记下android:checked
属性,如果设置为true,默认情况下将RadioButton
进行检查,反之亦然。
然后,您需要初始化活动中的RadioGroup
,然后查看其中的哪一项已经过检查。
public class MainActivity extends Activity {
private RadioGroup radioSexGroup;
private RadioButton radioSexButton;
private Button btnDisplay;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
radioSexGroup=(RadioGroup)findViewById(R.id.radioGroup);
btnDisplay=(Button)findViewById(R.id.button);
btnDisplay.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
int selectedId=radioSexGroup.getCheckedRadioButtonId();
radioSexButton=(RadioButton)findViewById(selectedId);
Toast.makeText(MainActivity.this,radioSexButton.getText(),Toast.LENGTH_SHORT).show();
}
});
}
}
注意:上面的代码总共可以归功于TutorialsPoint,如上面提供的第一个链接所示。
现在,如果您要检查已选择了哪个按钮并执行某些逻辑,则可以使用switch
语句与selectedId
从RadioGroup
获取int selectedid = radioSexGroup.getSelectedButtonId();
使用语法 int selectedId=radioSexGroup.getCheckedRadioButtonId();
radioSexButton=(RadioButton)findViewById(selectedId);
switch(selectedId) {
case R.id.radioButton:
//perform logic is first button selected
break;
case R.id.radiobutton2:
//perform logic is second button selected
break;
}
因此,要查看逻辑的位置,新的代码段将如下所示:
RadioGroup
希望这有助于您理解RadioButton
和RadioGroup
个对象。
您还可以直接将监听器应用于checkedid
,以获取所选RadioButton
的{{1}},而无需点击按钮,如上所示。
radioSexGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener()
{
@Override
public void onCheckedChanged(RadioGroup group, int checkedId)
{
switch (checkedId) {
case R.id.radiobutton:
//method for first radio button goes here
break;
case R.id.radiobutton2:
//method for second radio button goes here
break;
}
}
});