大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章主要介绍Fragment结合FragmentTabHost怎么用,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
创新互联-专业网站定制、快速模板网站建设、高性价比贵阳网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式贵阳网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖贵阳地区。费用合理售后完善,十余年实体公司更值得信赖。FragmentTabHost我也不知道是什么,就是可用用来当新浪微博底部那个状态栏的工具。现在说下怎么使用
首先activity要继承FragmentActivity
例如
public class A extends FragmentActivity{
//定义FragmentTabhost
private FragmentTabhost tab;
private TextView text;
private String str[]={"短信","电话","黑白名单","设置"};
private int icon[]={R.drawable.ic_firewall_sms_desk_setting,R.drawable.firewall_tab_icon_phone,R.drawable.sync_register_icon,R.drawable.img1};
private Class fragments[]={Fragment1.class,Fragment2.class,Fragment3.class,Fragment5.class};
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.harassment_intercepion);//主界面下面放出这个节目的XML文件
iniView();
}
}
=================================================================
android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:background="#333333" > android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/up_frame" > android:id="@android:id/tabhost" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" > android:id="@android:id/tabcontent" android:layout_width="0dp" android:layout_height="0dp" android:layout_weight="0" />
==========================================================================
然后实例化组件
public void init()
tab=this.findById(android.R.id.tabhost);//实例化tabhost
//tabhost.setup 第一个参数是context,第二个是拿到父类,第三个是
tabhost.setup(this, getSupportFragmentManager(), R.id.up_frame);外面包围tabhost的Rlayout
//
说说与Fragment结合。
具体使用到下面这个方法
int count=fragments.length;//拿到多少个fragment
for(int i=0;i TabSpec spec=tab.newTabSpec(str[i]).setIndicator(getTabItemView(i)); tab.addTab(spec,fragments[i],null);//把点击的tab与fragment连接起来 } } //////////// private View getTabItemView(int index){ View view =inflater.inflate(R.layout.fragment_down, null); p_w_picpath=(ImageView) view.findViewById(R.id.fragment_p_w_picpath); text=(TextView) view.findViewById(R.id.fragment_text); p_w_picpath.setImageResource(icon[index]); text.setText(str[index]); return view; } 以上是“Fragment结合FragmentTabHost怎么用”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注创新互联行业资讯频道! 另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
本文标题:Fragment结合FragmentTabHost怎么用-创新互联
分享路径:http://dzwzjz.com/article/coiodh.html