the usage of activity_main.xml

爲了讓界面能夠在平板上更好地展現,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

Fragment初探

爲了讓界面能夠在平板上更好地展現,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

[html]view plaincopy

 

  1. "http://schemas.android.com/apk/res/android" 

  2. android:layout_width="match_parent" 

  3. android:layout_height="match_parent" 

  4. android:background="#00ff00"

  5. android:layout_width="wrap_content" 

  6. android:layout_height="wrap_content" 

  7. android:text="This is fragment 1" 

  8. android:textColor="#000000" 

  9. android:textSize="25sp"/

  10.  

能夠看到,這個佈局文件很是簡單,只有一個LinearLayout,裏面加入了一個TextView。咱們如法炮製再新建一個fragment2.xml :

[html]view plaincopy

 

  1. "http://schemas.android.com/apk/res/android" 

  2. android:layout_width="match_parent" 

  3. android:layout_height="match_parent" 

  4. android:background="#ffff00"

  5. android:layout_width="wrap_content" 

  6. android:layout_height="wrap_content" 

  7. android:text="This is fragment 2" 

  8. android:textColor="#000000" 

  9. android:textSize="25sp"/

  10.  

  11.  

而後新建一個類Fragment1,這個類是繼承自Fragment的:

[java]view plaincopy

 

  1. publicclass Fragment1 extends Fragment {   

  2. @Override 

  3. public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {   

  4. return inflater.inflate(R.layout.fragment1, container, false);   

  5.     }   

  6.  

  7. }   

咱們能夠看到,這個類也很是簡單,主要就是加載了咱們剛剛寫好的fragment1.xml佈局文件並返回。一樣的方法,咱們再寫好Fragment2 :

[java]view plaincopy

 

  1. publicclass Fragment2 extends Fragment {   

  2. @Override 

  3. public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {   

  4. return inflater.inflate(R.layout.fragment2, container, false);   

  5.     }   

  6. }   

而後打開或新建activity_main.xml做爲主Activity的佈局文件,在裏面加入兩個Fragment的引用,使用android:name前綴來引用具體的Fragment:

[html]view plaincopy

 

  1. "http://schemas.android.com/apk/res/android" 

  2. android:layout_width="match_parent" 

  3. android:layout_height="match_parent" 

  4. android:baselineAligned="false"

  5. android:id="@+id/fragment1" 

  6. android:name="com.example.fragmentdemo.Fragment1" 

  7. android:layout_width="0dip" 

  8. android:layout_height="match_parent" 

  9. android:layout_weight="1"/

  10. android:id="@+id/fragment2" 

  11. android:name="com.example.fragmentdemo.Fragment2" 

  12. android:layout_width="0dip" 

  13. android:layout_height="match_parent" 

  14. android:layout_weight="1"/

  15.  

最後打開或新建MainActivity做爲程序的主Activity,裏面的代碼很是簡單,都是自動生成的:

[java]view plaincopy

 

  1. publicclass MainActivity extends Activity {   

  2. @Override 

  3. protectedvoid onCreate(Bundle savedInstanceState) {   

  4. super.onCreate(savedInstanceState);   

  5.         setContentView(R.layout.activity_main);   

  6.     }   

  7. }   

如今咱們來運行一次程序,就會看到,一個Activity很融洽地包含了兩個Fragment,這兩個Fragment平分了整個屏幕,效果圖以下:

動態添加Fragment

你已經學會了如何在XML中使用Fragment,可是這僅僅是Fragment最簡單的功能而已。Fragment真正的強大之處在於能夠動態地添加到 Activity當中,所以這也是你必需要掌握的東西。當你學會了在程序運行時向Activity添加Fragment,程序的界面就能夠定製的更加多樣化。下面咱們馬上來看看,如何動態添加Fragment。

仍是在上一節代碼的基礎上修改,打開activity_main.xml,將其中對Fragment的引用都刪除,只保留最外層的LinearLayout,並給它添加一個id,由於咱們要動態添加Fragment,不用在XML裏添加了,刪除後代碼以下:

[html]view plaincopy

 

  1. "http://schemas.android.com/apk/res/android" 

  2. android:id="@+id/main_layout" 

  3. android:layout_width="match_parent" 

  4. android:layout_height="match_parent" 

  5. android:baselineAligned="false"

  6.  

  7.  

  8.  

  9.  

  10.  

而後打開MainActivity,修改其中的代碼以下所示:

[java]view plaincopy

 

  1.     publicclass MainActivity extends Activity {   

  2.     @Override 

  3.     protectedvoid onCreate(Bundle savedInstanceState) {   

  4.     super.onCreate(savedInstanceState);   

  5.             setContentView(R.layout.activity_main);   

  6.             Display display = getWindowManager().getDefaultDisplay();   

  7.     if (display.getWidth() > display.getHeight()) {   

  8.                 Fragment1 fragment1 = new Fragment1();   

  9. getFragmentManager().beginTransaction().replace(R.id.main_layout, fragment1).commit();   

  10.             } else {   

  11.                 Fragment2 fragment2 = new Fragment2();   

  12. getFragmentManager().beginTransaction().replace(R.id.main_layout, fragment2).commit();   

  13.             }   

  14.         }   

  15.     }   

首先,咱們要獲取屏幕的寬度和高度,而後進行判斷,若是屏幕寬度大於高度就添加fragment1,若是高度大於寬度就添加fragment2。動態添加Fragment主要分爲4步:

1.獲取到FragmentManager,在Activity中能夠直接經過getFragmentManager獲得。

2.開啓一個事務,經過調用beginTransaction方法開啓。

3.向容器內加入Fragment,通常使用replace方法實現,須要傳入容器的id和Fragment的實例。

4.提交事務,調用commit方法提交。

如今運行一下程序,效果以下圖所示:

相關文章
相關標籤/搜索