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

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

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



开满天机
浏览 1880回答 3
3回答

倚天杖

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);看一看这,这个例

湖上湖

试试这个: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);
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Android