温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》
  • 首页 > 
  • 教程 > 
  • 开发技术 > 
  • 使用TabHost装载Activity, 当切换activity时,使activity刷新问题(执行oncreate()方法)

使用TabHost装载Activity, 当切换activity时,使activity刷新问题(执行oncreate()方法)

发布时间:2020-10-22 15:09:06 来源:网络 阅读:597 作者:zd78978971 栏目:开发技术

使用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)



向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI