如何在不使用XML的情况下在android中添加textview

时间:2012-03-01 19:36:52

标签: android

如何在不使用XML的情况下添加textview。我正在使用Eclipse。感谢

3 个答案:

答案 0 :(得分:2)

假设您要将其添加到parentView

TextView tv = new TextView(context);
parentView.addView(tv);

答案 1 :(得分:2)

在Google上搜索:http://www.dreamincode.net/forums/topic/130521-android-part-iii-dynamic-layouts/

 public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

 LinearLayout ll = new LinearLayout(this);
 ll.setOrientation(LinearLayout.VERTICAL);

 TextView tv = new TextView(this);
 tv.setText("Dynamic layouts ftw!");
 ll.addView(tv);

答案 2 :(得分:1)

如果没有你更具体,这是我能做的最好的事情。

public class MyActivity extends Activity 
{
    public void onCreate(Bundle orSomething) 
    {
        super.onCreate(orSomething);
        setContentView(new TextView(this));
    }
}