在我的应用程序中,我首先向用户显示一个免责声明页面作为"主页"选项卡。该页面包含一个文本框和一个提交按钮,该按钮将用户名存储到SharedPreferences中。我想更改"主页"选项卡的意图,以显示"谢谢"页面,而不是"免责声明"页面。我目前在TabActivity类的onCreate()方法下有如下所示。问题是,当用户提交用户名时,它不会刷新新的意图。
String pulledUsername = getSharedPreferences("com.blah.application", MODE_PRIVATE).getString("username",null);
if (pulledUsername != null){
intent = new Intent().setClass(this, HomeActivity.class);
spec = tabHost.newTabSpec("home").setIndicator("Home",
res.getDrawable(R.drawable.ic_tab_home))
.setContent(intent);
tabHost.addTab(spec);
}
else {
intent = new Intent().setClass(this, DisclaimerActivity.class);
spec = tabHost.newTabSpec("home").setIndicator("Home",
res.getDrawable(R.drawable.ic_tab_home))
.setContent(intent);
tabHost.addTab(spec);
}
我想在用户点击提交后更改"主页"选项卡的意图,或者让TabWidget主动检查pulled用户名是否存储在手机中,而不仅仅是在Create()上。
使用解决
startActivity(new Intent(DisclaimerActivity.this, TabWidgetActivity.class));