读书人

tabhost的主activity和各个页面之间怎

发布时间: 2012-08-08 14:32:45 作者: rapoo

tabhost的主activity和各个页面之间如何通讯?
spec = tabHost.newTabSpec("tab1")
.setIndicator("Tab1", res.getDrawable(R.drawable.aaa))
.setContent(intent);
tabHost.addTab(spec);

intent = new Intent(this, ActStatus.class);
spec = tabHost.newTabSpec("tab2")
.setIndicator("Tab2", res.getDrawable(R.drawable.bbb))
.setContent(intent);
tabHost.addTab(spec);

如上代码。tab1 tab2 如何和主activity发送消息?

[解决办法]
不是用intent?
[解决办法]
是要把tab绑定到view上吗,通过更新view来更新tab?

读书人网 >Android

热点推荐