在我的应用程序中,我首先向用户显示免责声明页面作为“主页”选项卡。此页面包含一个文本框和一个提交按钮,用于将用户名存储到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主动检查pullUsername是否存储在手机中,而不仅仅是onCreate()。
答案 0 :(得分:0)
使用
解决startActivity(new Intent(DisclaimerActivity.this, TabWidgetActivity.class));