Fragment结合FragmentTabHost怎么用
这篇文章主要介绍Fragment结合FragmentTabHost怎么用,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:申请域名、雅安服务器托管、营销软件、网站建设、铁山网站维护、网站推广。
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怎么用”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注创新互联行业资讯频道!
分享名称:Fragment结合FragmentTabHost怎么用
路径分享:http://ybzwz.com/article/joegio.html