Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android Fragment使用之實例演示

Android Fragment使用之實例演示

編輯:Android開發實例

       Fragment是Android honeycomb 3.0新增的概念,在如何使用Android Fragment中做了關於Fragment的詳細介紹。本文則主要是通過實例的方式讓大家更直觀的了解Fragment的使用方法。

       首先貼上實例的運行效果截圖:

Android Fragment使用之實例演示

       效果圖的左邊是一個列表,右邊是列表item的詳情。

       先看一下布局文件(layout):

XML/HTML代碼
  1. <?xml version=“1.0″ encoding=“utf-8″?>  
  2. <LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”   
  3.     android:orientation=“horizontal” android:layout_width=“match_parent”   
  4.     android:layout_height=“match_parent”>  
  5.     <fragment  
  6.         class=“com.fragment.main.TitlesFragment”   
  7.         android:id=“@+id/titles” android:layout_weight=“1″   
  8.         android:layout_width=“0px” android:layout_height=“match_parent” />  
  9.     <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” />  
  12. </LinearLayout>  

       布局文件中使用了fragment標簽和FrameLayout標簽。如何使用Android Fragment中介紹了兩中嵌入Fragment的方法,這個實例中都用到,從布局文件看到有了fragment標簽,這是一種使用方法,FrameLayout標簽將會成為第二種加載fragment的載體view。

       看一下程序實現(com.fragment.main.TitlesFragment):

Java代碼
  1. public class TitlesFragment extends ListFragment {   
  2.     
  3.     int mCurCheckPosition = 0;   
  4.     int mShownCheckPosition = -1;   
  5.     
  6.     @Override  
  7.     public void onActivityCreated(Bundle savedInstanceState) {   
  8.         super.onActivityCreated(savedInstanceState);    
  9.                                                            
  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);   
  16.         }    
  17.             getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE);    
  18.             showDetails(mCurCheckPosition);   
  19.     }   
  20.     
  21.     @Override  
  22.     public void onSaveInstanceState(Bundle outState) {   
  23.         super.onSaveInstanceState(outState);   
  24.     
  25.         outState.putInt(“curChoice”, mCurCheckPosition);   
  26.         outState.putInt(“shownChoice”, mShownCheckPosition);   
  27.     }   
  28.     
  29.     @Override  
  30.     public void onListItemClick(ListView l, View v, int position, long id) {   
  31.         showDetails(position);   
  32.     }   
  33.     
  34.     /**  
  35.      *顯示listview item 詳情  
  36.      */  
  37.     void showDetails(int index) {   
  38.         mCurCheckPosition = index;   
  39.             getListView().setItemChecked(index, true);   
  40.     
  41.             if (mShownCheckPosition != mCurCheckPosition) {   
  42.     
  43.                 DetailsFragment df = DetailsFragment.newInstance(index);   
  44.                   FragmentTransaction ft = getFragmentManager()   
  45.                         .beginTransaction();   
  46.                 ft.replace(R.id.details, df);   
  47.                 ft.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);   
  48.                 ft.commit();   
  49.                 mShownCheckPosition = index;   
  50.             }       
  51.     }   
  52.     
  53. }  

       TitlesFragment繼承自Fragment的子類ListFragment,使用了一個靜態數組填充列表,重寫了onListItemClick方法,showDetails方法展示ListView item的詳情。

Java代碼
  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);   
  5. ft.commit();//提交  

       這裡就使用到了Android Fragment使用中介紹的第二種加載fragment的方法。看一下DetailsFragment :

Java代碼
  1. public class DetailsFragment extends Fragment {   
  2.     
  3.     /**     * Create a new instance of DetailsFragment, initialized to     * show the text at ’index’.     */  
  4.     public static DetailsFragment newInstance(int index) {   
  5.         DetailsFragment f = new DetailsFragment();   
  6.         // Supply index input as an argument.           
  7.         Bundle args = new Bundle();   
  8.         args.putInt(“index”, index);   
  9.         f.setArguments(args);   
  10.         return f;   
  11.     }   
  12.     
  13.     @Override  
  14.     public View onCreateView(LayoutInflater inflater, ViewGroup container,   
  15.             Bundle savedInstanceState) {   
  16.         if (container == null) {               
  17.             return null;   
  18.         }   
  19.         ScrollView scroller = new ScrollView(getActivity());   
  20.         TextView text = new TextView(getActivity());   
  21.     
  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)]);   
  28.         return scroller;   
  29.     }   
  30. }  

       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下可以找到。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved