使用TabHost装载了activity,切换 activity 页面的时候,
如果需要刷新activity中的内容(切换时执行activity的oncreate()方法);
方法很简单 : 代码如下
//公用的TabSpec实例 private TabHost.TabSpec buildTabSpec(String tag, int resLabel, int resIcon, final Intent content) { return this.mtabhost .newTabSpec(tag) .setIndicator(getString(resLabel), getResources().getDrawable(resIcon)) .setContent(content); } //TabHost的addTab方法 tabHost.addTab(buildTabSpec("ACTIVE_TAB", R.string.active, R.drawable.icon_huodong_n, new Intent(this, DemoActivity.class).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)));
只需addTab时 对TabSpec的实例中的intent增加
.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。