如何在Android中动态添加按钮?如何在Android中动态添加按钮?
3 回答
浮云间
TA贡献1829条经验 获得超4个赞
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);
添加回答
举报
0/150
提交
取消