Fragment是Android honeycomb 3.0新增的概念,在Android——Fragment介绍、Android Fragment使用、Android FragmentManage FragmentTransaction介绍中做了关于Fragment的详细介绍。这一片主要通过一个实例了解Fragment的使用。
先看下实例效果图:
效果图的左边是一个列表,右边是列表item的详情。
先看一下布局文件(layout):
01 | <?xml version=“1.0″ encoding=“utf-8″?> |
02 | <LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android” |
03 | android:orientation=“horizontal” android:layout_width=“match_parent” |
04 | android:layout_height=“match_parent”> |
06 | class=“com.fragment.main.TitlesFragment” |
07 | android:id=“@+id/titles” android:layout_weight=“1″ |
08 | android:layout_width=“0px” android:layout_height=“match_parent” /> |
09 | <FrameLayout android:id=“@+id/details” android:layout_weight=“1″ |
10 | android:layout_width=“0px” android:layout_height=“match_parent” |
11 | android:background=“?android:attr/detailsElementBackground” /> |
布局文件中使用了fragment标签和FrameLayout标签。Android Fragment使用 中介绍了2中嵌入Fragment的方法,这个实例中都用到,从布局文件看到有了fragment标签,这是一种使用方法,FrameLayout标签将会成为第二种加载fragment的载体view。
看一下程序实现(com.fragment.main.TitlesFragment):
01 | public class TitlesFragment extends ListFragment { |
03 | int mCurCheckPosition = 0; |
04 | int mShownCheckPosition = -1; |
07 | public void onActivityCreated(Bundle savedInstanceState) { |
08 | super.onActivityCreated(savedInstanceState); |
10 | setListAdapter(new ArrayAdapter<String>(getActivity(), |
11 | android.R.layout.simple_list_item_activated_1, |
12 | Shakespeare.TITLES)); //使用静态数组填充列表 |
13 | if (savedInstanceState != null) { |
14 | mCurCheckPosition = savedInstanceState.getInt(“curChoice”, 0); |
15 | mShownCheckPosition = savedInstanceState.getInt(“shownChoice”, -1); |
17 | getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE); |
18 | showDetails(mCurCheckPosition); |
22 | public void onSaveInstanceState(Bundle outState) { |
23 | super.onSaveInstanceState(outState); |
25 | outState.putInt(“curChoice”, mCurCheckPosition); |
26 | outState.putInt(“shownChoice”, mShownCheckPosition); |
30 | public void onListItemClick(ListView l, View v, int position, long id) { |
31 | showDetails(position); |
37 | void showDetails(int index) { |
38 | mCurCheckPosition = index; |
39 | getListView().setItemChecked(index, true); |
41 | if (mShownCheckPosition != mCurCheckPosition) { |
43 | DetailsFragment df = DetailsFragment.newInstance(index); |
44 | FragmentTransaction ft = getFragmentManager() |
46 | ft.replace(R.id.details, df); |
47 | ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE); |
49 | mShownCheckPosition = index; |
TitlesFragment
TitlesFragment继承自Fragment的子类ListFragment,使用了一个静态数组填充列表,重写了onListItemClick方法,showDetails方法展示ListView item的详情。
1 | DetailsFragment df = DetailsFragment.newInstance(index);//获取详情Fragment的实例 |
2 | FragmentTransaction ft = getFragmentManager().beginTransaction();//获取FragmentTransaction 实例 |
3 | ft.replace(R.id.details, df); //使用DetailsFragment 的实例 |
4 | ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE); |
这里就使用到了Android Fragment使用中介绍的第二种加载fragment的方法。看一下DetailsFragment :
01 | public class DetailsFragment extends Fragment { |
03 | /** * Create a new instance of DetailsFragment, initialized to * show the text at ’index’. */ |
04 | public static DetailsFragment newInstance(int index) { |
05 | DetailsFragment f = new DetailsFragment(); |
06 | // Supply index input as an argument. |
07 | Bundle args = new Bundle(); |
08 | args.putInt(“index”, index); |
14 | public View onCreateView(LayoutInflater inflater, ViewGroup container, |
15 | Bundle savedInstanceState) { |
16 | if (container == null) { |
19 | ScrollView scroller = new ScrollView(getActivity()); |
20 | TextView text = new TextView(getActivity()); |
22 | int padding = (int) TypedValue.applyDimension( |
23 | TypedValue.COMPLEX_UNIT_DIP, 4, getActivity().getResources() |
24 | .getDisplayMetrics()); |
25 | text.setPadding(padding, padding, padding, padding); |
26 | scroller.addView(text); |
27 | text.setText(Shakespeare.DIALOGUE[getArguments().getInt("index", 0)]); |
DetailsFragment 中使用newInstance(int index)方法产生DetailsFragment 实例并接受整型参数,重载了onCreateView方法创建view。
这个例子基本完成了,主要介绍的是在3.0以后的使用方法,其实Fragment在SDK1.6之后就可以使用了,在1.6上使用需要借助 android-support-v4.jar包实现。android-support-v4.jar在:SDK根目录\extras\android \compatibility\v4下可以找到,如果想了解Fragment在SDK1.6上怎么实现的请参考Fragment 在Android SDK1.6上实现。
转载自