我正在使用Android Studio創建默認導航抽屜活動。 而我只是做「setText」,我的應用程序總是崩潰。Android setText總是崩潰
這是我的代碼。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mNavigationDrawerFragment = (NavigationDrawerFragment)
getSupportFragmentManager().findFragmentById(R.id.navigation_drawer);
mTitle = getTitle();
// Set up the drawer.
mNavigationDrawerFragment.setUp(
R.id.navigation_drawer,
(DrawerLayout) findViewById(R.id.drawer_layout));
TextView t1=(TextView)findViewById(R.id.textView);
t1.setText("Test");
}
請給我看完整的堆棧跟蹤 – theapache64
XML請謝謝! – alenz316
@LittleTin提供堆棧跟蹤......它和代碼一樣重要(有時甚至在看不到代碼的情況下甚至是有用的)。 – mah