一、Fragment主要用到的API:  

  1.Fragment 类-----用来创建碎片

  2.FragmentManager 类 ----为管理Activity中Fragment,用于Activity与Fragment之间进行交互.

  3.FragmentTransaction 类 ---用碎片管理器创建碎片事务,用碎片事务来执行碎片的添加,移除,替换,显示,隐藏等操作

二、fragment 可认为是一个轻量级的Activity,但不同与Activity,它是要嵌到Activity中来使用的,它用来解决设备屏幕大小的不同,主要是充分利用界面上的空间,如平板上多余的空间。一个Activity可以插入多个Fragment,可以认为Fragment就是Activity上的一个View。

  Fragment的基本用法-LMLPHP

三、Fragment的基本使用步骤

fragment 的布局文件===》fragment子类中用onCreateView()加载该布局===》在相应的Activity的布局文件中引用fragment===》在Activity中显示

上代码:

1.fragment 的布局文件:

myfragment.xml

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" > <TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="我是碎片的视图"
android:textSize="30sp"/>
</LinearLayout>

2.fragment子类中用onCreateView()加载该布局:建一个Fragment的子类MyFrag,

 package com.robin.fragdemo.frag;

 import com.robin.fragdemo.R;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup; public class MyFrag extends Fragment{
@Override//用加载器inflater把fragment 的布局文件myfrag.xml变成一个View.
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view=inflater.inflate(R.layout.myrag, container,false);
return view;
}
}

3.在相应的Activity的布局文件中引用fragment

  MainActivity的布局文件 face.xml 中引用fragment:

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" > <!-- fragment不是view只是占位符 -->
<fragment
android:id="@+id/fragment"
android:name="com.robin.myfrag.frag.MyFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
com.robin.myfrag.frag.MyFrag------MyFrag的全类名。

4.在Activity中显示

 package com.robin.myfrag.act;

 import com.robin.myfrag.R;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log; public class MainAct extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.face);
}
}

这就是Fragment的基本使用步骤。

05-11 04:03