爲了讓界面能夠在平板上更好地展現,Android在3.0版本引入了Fragment(碎片)功能,它很是相似於Activity,能夠像 Activity同樣包含佈局。Fragment一般是嵌套在Activity中使用的,如今想象這種場景:有兩個 Fragment,Fragment 1包含了一個ListView,每行顯示一本書的標題。Fragment 2包含了TextView和 ImageView,來顯示書的詳細內容和圖片。html
AD:51CTO學院:IT精品課程在線看!java
咱們都知道,Android上的界面展現都是經過Activity實現的,Activity實在是太經常使用了,我相信你們都已經很是熟悉了,這裏就再也不贅述。android
可是Activity也有它的侷限性,一樣的界面在手機上顯示可能很好看,在平板上就未必了,由於平板的屏幕很是大,手機的界面放在平板上可能會有過度被拉長、控件間距過大等狀況。這個時候更好的體驗效果是在Activity中嵌入"小Activity",而後每一個"小Activity"又能夠擁有本身的佈局。所以,咱們今天的主角Fragment登場了。ide
爲了讓界面能夠在平板上更好地展現,Android在3.0版本引入了Fragment(碎片)功能,它很是相似於Activity,能夠像 Activity同樣包含佈局。Fragment一般是嵌套在Activity中使用的,如今想象這種場景:有兩個 Fragment,Fragment 1包含了一個ListView,每行顯示一本書的標題。Fragment 2包含了TextView和 ImageView,來顯示書的詳細內容和圖片。佈局
若是如今程序運行豎屏模式的平板或手機上,Fragment 1可能嵌入在一個Activity中,而Fragment 2可能嵌入在另外一個Activity中,以下圖所示:spa
而若是如今程序運行在橫屏模式的平板上,兩個Fragment就能夠嵌入在同一個Activity中了,以下圖所示:.net
由此能夠看出,使用Fragment可讓咱們更加充分地利用平板的屏幕空間,下面咱們一塊兒來探究下如何使用Fragment。code
首先須要注意,Fragment是在3.0版本引入的,若是你使用的是3.0以前的系統,須要先導入android-support-v4的jar包才能使用Fragment功能。xml
新建一個項目叫作Fragments,而後在layout文件夾下新建一個名爲fragment1.xml的佈局文件:htm
"http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#00ff00">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is fragment 1"
android:textColor="#000000"
android:textSize="25sp"/>
能夠看到,這個佈局文件很是簡單,只有一個LinearLayout,裏面加入了一個TextView。咱們如法炮製再新建一個fragment2.xml :
"http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffff00">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is fragment 2"
android:textColor="#000000"
android:textSize="25sp"/>
而後新建一個類Fragment1,這個類是繼承自Fragment的:
publicclass Fragment1 extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment1, container, false);
}
}
咱們能夠看到,這個類也很是簡單,主要就是加載了咱們剛剛寫好的fragment1.xml佈局文件並返回。一樣的方法,咱們再寫好Fragment2 :
publicclass Fragment2 extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment2, container, false);
}
}
而後打開或新建activity_main.xml做爲主Activity的佈局文件,在裏面加入兩個Fragment的引用,使用android:name前綴來引用具體的Fragment:
"http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false">
android:id="@+id/fragment1"
android:name="com.example.fragmentdemo.Fragment1"
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_weight="1"/>
android:id="@+id/fragment2"
android:name="com.example.fragmentdemo.Fragment2"
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_weight="1"/>
最後打開或新建MainActivity做爲程序的主Activity,裏面的代碼很是簡單,都是自動生成的:
publicclass MainActivity extends Activity {
@Override
protectedvoid onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
如今咱們來運行一次程序,就會看到,一個Activity很融洽地包含了兩個Fragment,這兩個Fragment平分了整個屏幕,效果圖以下:
你已經學會了如何在XML中使用Fragment,可是這僅僅是Fragment最簡單的功能而已。Fragment真正的強大之處在於能夠動態地添加到 Activity當中,所以這也是你必需要掌握的東西。當你學會了在程序運行時向Activity添加Fragment,程序的界面就能夠定製的更加多樣化。下面咱們馬上來看看,如何動態添加Fragment。
仍是在上一節代碼的基礎上修改,打開activity_main.xml,將其中對Fragment的引用都刪除,只保留最外層的LinearLayout,並給它添加一個id,由於咱們要動態添加Fragment,不用在XML裏添加了,刪除後代碼以下:
"http://schemas.android.com/apk/res/android"
android:id="@+id/main_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false">
而後打開MainActivity,修改其中的代碼以下所示:
[java]view plaincopy
publicclass MainActivity extends Activity {
@Override
protectedvoid onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Display display = getWindowManager().getDefaultDisplay();
if (display.getWidth() > display.getHeight()) {
Fragment1 fragment1 = new Fragment1();
getFragmentManager().beginTransaction().replace(R.id.main_layout, fragment1).commit();
} else {
Fragment2 fragment2 = new Fragment2