我试过这个代码。。当模拟器启动时,它会在一行中显示三个单选按钮。但是我需要一个按钮事件。如果我单击按钮,它应该询问单选按钮的数量。然后,如果我给予计数,它必须根据给定的计数显示单选按钮。例如,如果我给出计数为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_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<RadioGroup
android:id="@+id/radiogroup"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"/>
</RelativeLayout>
4条答案
按热度按时间6kkfgxo01#
请看下面的代码,我已经在xml布局中创建了一个“编辑文本”和一个“按钮”。在“编辑文本”中输入一个数字,然后单击按钮,相同数量的单选按钮将添加到布局中。
这是您的活动主页
这是名为“activity_main”的布局文件
uinbv5nw2#
请尝试以下操作:
qgelzfjb3#
这是一种方法:
但是如果你需要水平地做这件事,只要用
setOrientation()
方法加上方向(默认值是垂直的)就可以了:下面是完整的代码:
首先,在我们的布局中定义RadioGroup:
MainActivity中的代码:
pbossiut4#
在xml中添加
Button
和EditText
,并将editText中的输入内容添加到变量inputValue
中,然后尝试执行以下操作: