我想要做的是创建一个复选框布局,其中复选框的数量由用户决定。
就像我在我的应用程序的下一页上说5然后应该出现5个复选框。 此外,我希望此复选框旁边的文本从1到5自动填充。
或者假设我用按钮替换复选框,按钮shold是动态创建的,如果是按钮,按钮应该改变颜色以表示它被点击。
我该怎么做?
三江源!
答案 0 :(得分:2)
这是我的代码中的一个片段。你要求的是什么。
// get the parent element which will hold your newly created objects
LinearLayout layout = (LinearLayout) findViewById(R.id.shouldContainer);
// create the laout parameters objects which will hold information how you would like your widget to be presented
//you can specify the same attributes as doing it "staticly" with XML file
LayoutParams layoutParams = new LayoutParams(LayoutParams.FILL_PARENT, 0);
layoutParams.weight = 1;
//create your desired object, add listneres to it, text and more
Button button = new Button(this);
//add your object, in this case button to the parent element on given position with given layout parameters
layout.addView(button, position, layoutParams);
当然,您必须根据需要配置布局选项。