如何根据给定的计数动态添加单选按钮?

Posted

技术标签:

【中文标题】如何根据给定的计数动态添加单选按钮?【英文标题】:How to add radio button dynamically as per the given number of counts? 【发布时间】:2013-10-23 05:11:30 【问题描述】:

我已经尝试过这段代码。当模拟器启动时,它将在一行中显示三个单选按钮。但我需要一个按钮事件。 IE;如果我单击按钮,它应该询问单选按钮的数量。那么如果我给出计数,它必须根据给定的计数显示单选按钮。例如,如果我将计数设为 3,则它必须在一行中显示三个单选按钮。 非常感谢您的帮助。 提前致谢。

  public class MyActivity extends Activity 
    /**
     * Called when the activity is first created.
     */
    @Override
    public void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        for(int row=0; row < 1; row++)
        
            LinearLayout ll = new LinearLayout(this);
            ll.setOrientation(LinearLayout.HORIZONTAL);
            for(int i = 1; i < 4; i++) 
                RadioButton rdbtn = new RadioButton(this);
                rdbtn.setId((row * 2) + i);
                rdbtn.setText("Radio " + rdbtn.getId());
                ll.addView(rdbtn);
            
            ((ViewGroup)findViewById(R.id.radiogroup)).addView(ll);
        
    
    

这是xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_
                android:layout_
                tools:context=".MainActivity" >

    <RadioGroup
            android:id="@+id/radiogroup"
            android:orientation="vertical"
            android:layout_
            android:layout_
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"/>

    </RelativeLayout>

【问题讨论】:

【参考方案1】:

请在代码下方找到,我在 xml 布局中创建了一个“EditText”和一个“Button”。在'EditText'中输入一个数字,然后单击按钮,相同的数字。的单选按钮将添加到布局中。

这是你的ActivityMain

public class ActivityMain extends AppCompatActivity implements View.OnClickListener 

    EditText mEtNumOfRadioBtns;
    Button mBtnAdd;
    String TAG = "TestActivity";
    RadioGroup mRgAllButtons;

    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //
        mEtNumOfRadioBtns = findViewById(R.id.et_no);
        mBtnAdd = findViewById(R.id.btn);
        mRgAllButtons = findViewById(R.id.radiogroup);
        //
        mBtnAdd.setOnClickListener(new View.OnClickListener() 
            @Override
            public void onClick(View v) 
                int number = Integer.parseInt(mEtNumOfRadioBtns.getText().toString().trim());
                addRadioButtons(number);
            
        );
    

    public void addRadioButtons(int number) 
        mRgAllButtons.setOrientation(LinearLayout.HORIZONTAL);
        //
        for (int i = 1; i <= number; i++) 
            RadioButton rdbtn = new RadioButton(this);
            rdbtn.setId(View.generateViewId());
            rdbtn.setText("Radio " + rdbtn.getId());
            rdbtn.setOnClickListener(this);
            mRgAllButtons.addView(rdbtn);
        
    

    @Override
    public void onClick(View v) 
        Log.d(TAG, " Name " + ((RadioButton)v).getText() +" Id is "+v.getId());
    

这是您的布局文件,名称为“activity_main”

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    tools:context=".MainActivity" >

    <RadioGroup
        android:id="@+id/radiogroup"
        android:layout_
        android:layout_
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:orientation="vertical" />

    <LinearLayout
        android:layout_marginTop="20dp"
        android:layout_marginLeft="20dp"
        android:layout_
        android:layout_>

        <EditText android:layout_
            android:layout_
            android:hint="Enter no."
            android:inputType="number"
            android:id="@+id/et_no"/>

        <Button
            android:layout_
            android:layout_
            android:text="Add Radio btn"
            android:id="@+id/btn"/>

    </LinearLayout>
    
</RelativeLayout>

【讨论】:

以防万一有人偶然发现同样的问题:我尝试了这个解决方案,但是使用显示的层次结构 (radiogroup->linearlayout->radiobutton) 我没有通过以下方式获得选中的单选按钮:((RadioGroup )findViewById(R.id.radiogroup)).getCheckedRadioButtonId();我需要切换线性布局,以便将单选按钮直接添加到单选组中,例如 (linearlayout->radiogroup->radiobutton)。 这工作正常,但允许同时检查多个单选按钮!为了防止这种情况,不要将单选按钮添加到线性布局中,直接添加到单选按钮的组中。 @MohammadZekrallah,你说得对,这允许多选,收音机应该是“单选”。谢谢你,兄弟。答案应该更新。 这不会在 RadioGroup 中创建一个 RadioGroup 吗? 如何为每个radioButton添加Click事件?【参考方案2】:

试试下面的方法:

RadioGroup rgp= (RadioGroup) findViewById(R.id.radiogroup);
RadioGroup.LayoutParams rprms;

for(int i=0;i<3;i++)
      RadioButton radioButton = new RadioButton(this);
      radioButton.setText("new"+i);
      radioButton.setId(View.generateViewId());
      rprms= new RadioGroup.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
      rgp.addView(radioButton, rprms);

【讨论】:

@Riser 如何从选定的单选按钮获取文本请帮助我 对于 API 级别 17+,您可以调用 View.generateViewId() -- from ***.com/a/35551268/1694043 @GowthamanM 我希望question 对您的情况有用。【参考方案3】:

这是这样做的方法:

    RadioGroup rgp = (RadioGroup) findViewById(R.id.radio_group);        
    int buttons = 5;
    for (int i = 1; i <= buttons ; i++) 
        RadioButton rbn = new RadioButton(this);
        rbn.setId(View.generateViewId());
        rbn.setText("RadioButton" + i);
        rgp.addView(rbn);
    

但是如果你需要水平做这个,只需用setOrientation()方法添加方向(默认值为垂直):

    RadioGroup rgp = (RadioGroup) findViewById(R.id.radio_group);
    rgp.setOrientation(LinearLayout.HORIZONTAL);
    int buttons = 5;
    for (int i = 1; i <= buttons; i++) 
        RadioButton rbn = new RadioButton(this);
        rbn.setId(View.generateViewId());
        rbn.setText("RadioButton" + i);
        rbn.setLayoutParams(params);
        rgp.addView(rbn);
    


这是完整的代码:

首先在我们的布局中定义 RadioGroup:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_
    android:layout_
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin">

    <RadioGroup
        android:id="@+id/radio_group"
        android:layout_
        android:layout_/>
</RelativeLayout>

进入MainActivity的代码:

public class MainActivity extends AppCompatActivity 

    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        //Defining 5 buttons.
        int buttons = 5;
        AppCompatRadioButton[] rb = new AppCompatRadioButton[buttons];

        RadioGroup rgp = (RadioGroup) findViewById(R.id.radio_group);
        rgp.setOrientation(LinearLayout.HORIZONTAL);

        for (int i = 1; i <= buttons; i++) 
            RadioButton rbn = new RadioButton(this);
            rbn.setId(View.generateViewId());
            rbn.setText("RadioButton" + i);
            LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT, 1f);
            rbn.setLayoutParams(params);
            rgp.addView(rbn);
        

    

【讨论】:

谢谢。需要注意的一件事是 id 必须是唯一的,这是我遇到的问题。 是的,当然,(1 + 1000) id 是为 id 定义的连续数字:rbn.setId(1 + 1000); 我想水平映射按钮,但上述解决方案似乎对我不起作用。如果我想垂直而不是水平地映射它,它可以工作。有什么帮助吗? 如何获取每个 RadioButton 的 Click 事件? 这对我来说是迄今为止最简单的方法【参考方案4】:

在 xml 中添加 ButtonEditText 并将 editText 的输入输入到变量 inputValue 并试试这个,

public class MyActivity extends Activity 

    /**
     * Called when the activity is first created.
     */
    LinearLayout ll=null;
    ViewGroup   vwgroup;
    Button btnClick;    

    @Override
    public void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        vwgroup=((ViewGroup)findViewById(R.id.radiogroup)
        btnClick=(Button)findViewById(R.id.button1);


        btnClick.setOnClickListener(new OnClickListener() 

            @Override
            public void onClick(View arg0) 
                if(ll!=null)
                    viewgroup.removeView(ll);
                ll = new LinearLayout(this);
                for(int i = 1; i < inputValue; i++) 
                    RadioButton rdbtn = new RadioButton(this);
                    rdbtn.setId(View.generateViewId());
                    rdbtn.setText("Radio " + rdbtn.getId());
                    ll.addView(rdbtn);
                
                vwgroup.addView(ll);

            
        );
    

【讨论】:

对于 API 级别 17+,您可以调用 View.generateViewId() -- from ***.com/a/35551268/1694043

以上是关于如何根据给定的计数动态添加单选按钮?的主要内容,如果未能解决你的问题,请参考以下文章

根据 Woocommerce 结帐中的单选按钮动态更新费用

如何在materializecss的单选按钮中删除字符计数器

如何动态设置单选按钮的 'checked' 属性。

如何以Windows格式动态添加单选按钮?

合成:如何根据单选按钮中的选定选项动态更改画布新图纸?

MFC 在代码中增加单选按钮