gpt4 book ai didi

android - 检查在 ANDROID 中检查了哪个单选按钮?

转载 作者:太空宇宙 更新时间:2023-11-03 13:36:08 25 4
gpt4 key购买 nike

我有一个 radio 组,当我检查组中的任何人时,我想知道检查了哪个。我可以给每个人一个id吗?当我实现这段代码时

  public void onCheckedChanged(RadioGroup group, int checkedId) {        mChoice.setText(checkedId+"");    }

我得到了一些随机数。我无法确定我点击了哪个单选按钮。还有别的办法吗?

最佳答案

您可以从以下示例分配 ID:http://developer.android.com/resources/tutorials/views/hello-formstuff.html#RadioButtons :

<RadioGroup
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RadioButton android:id="@+id/radio_red"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Red" />
<RadioButton android:id="@+id/radio_blue"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Blue" />
</RadioGroup>

然后将 checkedIdR.id.radio_red 进行比较(尽管使用您实际指定的值)。

关于android - 检查在 ANDROID 中检查了哪个单选按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7096710/

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