如何在Android中动态添加按钮?如何在Android中动态添加按钮?
3 回答
湖上湖
TA贡献2003条经验 获得超2个赞
LinearLayout ll = (LinearLayout)findViewById(R.id.layout);Button btn = new Button(this);btn.setText("Manual Add"); btn.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));ll.addView(btn);
- 3 回答
- 0 关注
- 1879 浏览
添加回答
举报
0/150
提交
取消