为了账号安全,请及时绑定邮箱和手机立即绑定

如何在Android中动态添加按钮?

如何在Android中动态添加按钮?

繁花如伊 2019-08-03 13:03:35
如何在Android中动态添加按钮?如何在Android中动态添加按钮?
查看完整描述

3 回答

?
有只小跳蛙

TA贡献1824条经验 获得超8个赞

Button myButton = new Button(this);
myButton.setText("Push Me");

LinearLayout ll = (LinearLayout)findViewById(R.id.buttonlayout);
LayoutParams lp = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
ll.addView(myButton, lp);

看一看这,这个



查看完整回答
反对 回复 2019-08-04
?
浮云间

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);


 

查看完整回答
反对 回复 2019-08-04
  • 3 回答
  • 0 关注
  • 271 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信