如何在eclipse android中动态创建文本框

时间:2016-02-25 13:43:37

标签: android eclipse

我想设计一个简单的android应用程序。提示用户输入你想要的数字。然后它应该根据用户要求动态创建文本框。任何人都给我代码。提前谢谢

1 个答案:

答案 0 :(得分:1)

您提出的问题很快会因为偏离主题而暂停,但我会向您提供有关添加TextViewEditText的一些提示,如果您想添加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
 }