我該如何動態地添加一個TextView到這個?註釋掉的代碼不起作用。所有的動態添加一個TextView - Android
public class myTextSwitcher extends Activity {
private TextView myText;
public myTextSwitcher(String string){
//myText = new TextView(this);
//myText.setText("My Text");
}
}
是否需要爲textview對象mytext提供'LinearLayout.LayoutParams'? –