歡迎大家在這裡學習Activity的Layout文件中聲明fragment!下面是我們給大家整理出來的精彩內容。希望大家在這裡學習!
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <fragment android:name="com.example.news.ArticleListFragment"
- android:id="@+id/list"
- android:layout_weight="1"
- android:layout_width="0dp"
- android:layout_height="match_parent" />
- <fragment android:name="com.example.news.ArticleReaderFragment"
- android:id="@+id/viewer"
- android:layout_weight="2"
- android:layout_width="0dp"
- android:layout_height="match_parent" />
- </LinearLayout>
好了,Activity的Layout文件中聲明fragment內容就給大家介紹到這裡了。希望大家繼續關注我們的網站!
相關推薦:
Android Handler的使用介紹