我想设计一个简单的android应用程序。提示用户输入你想要的数字。然后它应该根据用户要求动态创建文本框。任何人都给我代码。提前谢谢
答案 0 :(得分:1)
您提出的问题很快会因为偏离主题而暂停,但我会向您提供有关添加TextView
或EditText
的一些提示,如果您想添加TextView
number
次,然后这样做
LayoutParams lparams = new LayoutParams(
LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
for(int i=0; i<number; i++)
TextView tv=new TextView(this);
tv.setLayoutParams(lparams);
tv.setText("TextView "+i);
this.myLayout.addView(tv); //Where mLayout is your Parent Layout
}