gpt4 book ai didi

android - 如何将方法分配给 RadioButton?

转载 作者:行者123 更新时间:2023-11-29 19:26:21 26 4
gpt4 key购买 nike

我在 Activity x 中有五个 RadioButton 小部件,在 Activity y 中有五个方法。我想为每个 RadioButton 分配一个特定的方法,所以当用户在 Activity x 中选择一个按钮时,Activity y 中的一个方法被实现

最佳答案

首先,我建议您进一步阅读以确保您完全理解这段代码的输出。

  1. > Android - RadioGroup control
  2. > Radio Group - Android Developers
  3. > Radio Button - Android Developers

您需要在布局文件中创建 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 将默认选中,反之亦然。

然后您需要在 Activity 中初始化 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();

因此,为了了解逻辑的走向,新代码 fragment 将如下所示:

        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;
}

希望这有助于您理解 RadioGroupRadioButton 对象。

您还可以直接将监听器应用于 RadioGroup 以获取选中的 RadioButtoncheckedid,无需单击按钮,如图所示多于。

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;
}
}
});

关于android - 如何将方法分配给 RadioButton?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41320742/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com