fragment入门
生活随笔
收集整理的這篇文章主要介紹了
fragment入门
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
[1]在activity布局中定義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.itheima.fragment.Fragment1"android:id="@+id/list"android:layout_weight="1"android:layout_width="0dp"android:layout_height="match_parent" /><fragment android:name="com.itheima.fragment.Fragment2"android:id="@+id/viewer"android:layout_weight="1"android:layout_width="0dp"android:layout_height="match_parent" /> </LinearLayout>[2]聲明fragment
import android.app.Fragment; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup;//定義一個Fragment public class Fragment1 extends Fragment {//當用戶第一次畫ui的時候調用 要顯示Fragment自己的內容 setContentView(R.layout.activity_main); @Overridepublic View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {//[1]通過打氣筒把一個布局轉換成view對象 View view = inflater.inflate(R.layout.fragment1, null);return view;} }[3]name屬性 要指定我們自己定義的fragment
轉載于:https://www.cnblogs.com/xufengyuan/p/6099180.html
總結
以上是生活随笔為你收集整理的fragment入门的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Poj 2109 k^n = p.
- 下一篇: 虚拟机vmware11装Mac ox 1