如何制作带有可点击文本、复选框和按钮的动态布局?

发布于 2024-08-23 07:50:05 字数 106 浏览 8 评论 0原文

请给我建议,我想制作一个包含混合元素的动态布局 [文本] [复选框] [按钮] [文本] [复选框] [按钮] [文本] [复选框] [按钮] ......

你能给我一些示例代码吗?

Give me please an advise, I want to make a dynamic layout which contains mixed elements
[text] [checkbox] [button]
[text] [checkbox] [button]
[text] [checkbox] [button]
......

Can you give me some sample code, please

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

唱一曲作罢 2024-08-30 07:50:05
final TableLayout Tlayout = new TableLayout(getApplicationContext());  
Trow = new TableRow(getApplicationContext()); 

checkBox = new CheckBox(getApplicationContext());
Trow.addView(checkBox);

button = new Button(getApplicationContext());
button.setText("Button");
Trow.addView(button);

textBox = new EditText(getApplicationContext());
textBox.setText("default_value");
Trow.addView(textBox);

Tlayout.addView(Trow);

此代码可以帮助您创建动态表单元素。

final TableLayout Tlayout = new TableLayout(getApplicationContext());  
Trow = new TableRow(getApplicationContext()); 

checkBox = new CheckBox(getApplicationContext());
Trow.addView(checkBox);

button = new Button(getApplicationContext());
button.setText("Button");
Trow.addView(button);

textBox = new EditText(getApplicationContext());
textBox.setText("default_value");
Trow.addView(textBox);

Tlayout.addView(Trow);

This code may help you to create dynamic form elements.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文