萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 安卓開發 >> 在Activity的Layout文件中聲明fragment的方法

在Activity的Layout文件中聲明fragment的方法

歡迎大家在這裡學習Activity的Layout文件中聲明fragment!下面是我們給大家整理出來的精彩內容。希望大家在這裡學習!

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="horizontal"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="match_parent">  
  6.      <fragment android:name="com.example.news.ArticleListFragment"  
  7.             android:id="@+id/list"  
  8.             android:layout_weight="1"  
  9.             android:layout_width="0dp"  
  10.             android:layout_height="match_parent" />  
  11.      <fragment android:name="com.example.news.ArticleReaderFragment"  
  12.             android:id="@+id/viewer"  
  13.             android:layout_weight="2"  
  14.             android:layout_width="0dp"  
  15.             android:layout_height="match_parent" />  
  16.   </LinearLayout>  

好了,Activity的Layout文件中聲明fragment內容就給大家介紹到這裡了。希望大家繼續關注我們的網站!

相關推薦:

Android Handler的使用介紹

copyright © 萬盛學電腦網 all rights reserved