我有一个按钮,当我点击它时,它会在我输入一个值时显示edittext,但我无法显示输入的值来显示我使用过textview的值,但我无法显示。
class DynamicbuttonActivity extends Activity {
TextView view= new TextView(getApplicationContext());
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ScrollView scrl=new ScrollView(this);
final LinearLayout ll=new LinearLayout(this);
ll.setOrientation(LinearLayout.VERTICAL);
scrl.addView(ll);
Button add_btn=new Button(this);
add_btn.setText("Click to add EditTexts");
ll.addView(add_btn);
Button add_btn1=new Button(this);
add_btn1.setText("Click to view TextViiews");
ll.addView(add_btn1);
add_btn.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
EditText et=new EditText(getApplicationContext());
ll.addView(et);
}
});
add_btn1.setOnClickListener(new OnClickListener() {
String strg;
public void onClick(View v) {
strg = et.getText().toString();
view.setText(strg);
ll.addView(view);
}
});
this.setContentView(scrl);
}
}
你能帮我么 ?