在我的Android应用程序中,我必须在运行时在屏幕底部添加多个按钮。如何在添加时为每个按钮添加onClick侦听器?
答案 0 :(得分:0)
您可以在Eclipse Designer上创建LinearLayout或其他任何内容,并将其放在底部。关于创建按钮:
Button b = new Button(this); // Assuming it's in your activity
LinearLayout ll = (LinearLayout)findViewById(R.id.myLayoutAtTheBottom); // It could not be a LinearLayout, of course
ll.addView(b);
每个按钮等等。
答案 1 :(得分:0)
您可以在运行时使用Button b = new Button(this)添加任意数量的按钮;代码/ ... :)解决问题