我正在尝试使用setContentView
方法将我的观点带到前面,但是在这样做时我收到了这个错误。
从这里搜索类似的问题我发现这个错误通常是在尝试获取/设置布局视图对象的值时导致的,例如没有实例化它,但这里不是这种情况,我什至无法设置视图。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.ticker);
Thread tmr = new Thread() {
public void run() {
try {
sleep(1000);
} catch (InterruptedException iEx) {
iEx.printStackTrace();
} finally {
User usrObj = new User();
if (usrObj.authenticateUser()) {
Intent mainActivity = new Intent(
"android.intent.action.Homeview");
startActivity(mainActivity);
} else {
setContentView(R.layout.login); // <- ERROR
activateLogin();
}
}
}
};
tmr.start();
}