动态添加
text1=new TextView(this);
text1.setText("动态添加");
((LinearLayout) this.findViewById(R.id.layout)).addView(text1);
//引用资源文件
text2=(TextView)this.findViewById(R.id.textView1);
String a="56788997";
text2.setText(a);