我想在Activity
接口出現在onCreate()
更新TextView
,使文本應設置,我已經試過是:中的onCreate()更新的TextView
Java代碼:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_sem_selection);
TextView T =(TextView)findViewById(R.id.textView1);
T.setText("required text");
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment()).commit();
}
}
但活動開始時我收到錯誤,只要我評論此行:
T.setText("required text");
應用程序正常運行正常,沒有錯誤。我應該怎麼做?還有其他方法嗎?
你的'textView1'可能在'PlaceholderFragment'中。將它移動到'onCreateView' – Apoorv
什麼錯誤?發佈你的LogCat/Stacktrace – Sufian
是的,這必須在裏面onCreatView(),解決了它:) –