您好,登錄后才能下訂單哦!
這篇文章主要介紹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();
}
}
=================================================================
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#333333"
>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/up_frame"
>
<android.support.v4.app.FragmentTabHost //這個是tabhost的組件
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0" />
</android.support.v4.app.FragmentTabHost>
</RelativeLayout>
</RelativeLayout>
==========================================================================
然后實例化組件
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<count;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怎么用”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。