近期剛學了Fragment,突然想在Fragment中實現(xiàn)TabHost,查閱相關(guān)資料后發(fā)現(xiàn)現(xiàn)在TabHost已經(jīng)被FragmentTabHost替代了,因此就想著學習一下,并記錄下來,接下來把一些心得分享一下。
讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:域名與空間、虛擬空間、營銷軟件、網(wǎng)站建設(shè)、忻州網(wǎng)站維護、網(wǎng)站推廣。
一、使用場景
首先FragmentTabHost不僅可以在FragmentActivity中使用,也可以在Fragment中使用,通過與Fragment的結(jié)合實現(xiàn)TabHost的效果
二、使用步驟
1、布局文件
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > android:id="@android:id/tabhost" android:layout_width="match_parent" android:layout_height="wrap_content"> android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > android:id="@android:id/tabs" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="0" android:orientation="horizontal" /> android:id="@android:id/tabcontent" android:layout_width="0dp" android:layout_height="0dp" android:layout_weight="0" /> android:id="@+id/realtabcontent" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" />
2、代碼:
1)繼承FragmentActivity——OnCreate()中:
FragmentTabHost fragmentTabHost = (FragmentTabHost)findViewById(android.R.id.tabhost);
fragmentTabHost.setup(this, getFragmentManager(), R.id.realtabcontent);
fragmentTabHost.addTab(fragmentTabHost.newTabSpec("tab1").setIndicator("我的意 見"), SettingFragment.class, null);
fragmentTabHost.addTab(fragmentTabHost.newTabSpec("tab2").setIndicator("常見問 題"), NotificationFragment.class, null);
2)繼承Fragment——OnCreateView()中:
View layout = inflater.inflate(R.layout.fragment_sliding_feedback, null);
FragmentTabHost fragmentTabHost = (FragmentTabHost)layout.findViewById(android.R.id.tabhost);
fragmentTabHost.setup(this, getChildFragmentManager(), R.id.realtabcontent);
fragmentTabHost.addTab(fragmentTabHost.newTabSpec("tab1").setIndicator("我的意 見"), SettingFragment.class, null);
fragmentTabHost.addTab(fragmentTabHost.newTabSpec("tab2").setIndicator("常見問 題"), NotificationFragment.class, null);
return layout;