首页 > 代码库 > 【Android开发】之Fragment开发1
【Android开发】之Fragment开发1
一、Fragment简介
1.Fragment作为Activity界面的一部分组成出现;
2.可以在一个Activity中同时出现多个Fragment,并且,一个Fragment亦可在多个Activity中使用;
3.在Activity运行过程中,可以添加、移除或者替换Fragment(add()、remove()、replace());
4.Fragment可以响应自己的输入事件,并且有自己的生命周期,当然,它们的生命周期直接被其所属的activity的生命周期影响。
那我们为什么要用Fragment呢?主要目的是用在大屏幕设备上--例如平板电脑上,支持更加动态和灵活的UI设计。平板电脑的屏幕要比手机的大得多,有更多的空间来放更多的UI组件,并且这些组件之间会产生更多的交互。我们可以把Fragment认为是“小的Activity”,Fragment更加简洁。
二、Fragment的简单使用
那我们就简单的显示2个Fragment为例来讲解一下。
1.在XML中添加Fragment:
新建Fragment1、Fragment2(注意这里导入的是android.app.Fragment的Fragment):
Fragment1代码:
1 package com.example.fragment; 2 3 import android.app.Fragment; 4 import android.os.Bundle; 5 import android.util.Log; 6 import android.view.LayoutInflater; 7 import android.view.View; 8 import android.view.ViewGroup; 9 10 import com.example.fragmentdemo.R;11 12 public class Fragment1 extends Fragment {13 @Override14 public View onCreateView(LayoutInflater inflater, ViewGroup container,15 Bundle savedInstanceState) {16 Log.e("TAG", "in");17 return inflater.inflate(R.layout.fragment1, container, false);18 }19 }
Fragment2代码:
1 package com.example.fragment; 2 3 import android.app.Fragment; 4 import android.os.Bundle; 5 import android.view.LayoutInflater; 6 import android.view.View; 7 import android.view.ViewGroup; 8 9 import com.example.fragmentdemo.R;10 11 public class Fragment2 extends Fragment {12 @Override13 public View onCreateView(LayoutInflater inflater, ViewGroup container,14 Bundle savedInstanceState) {15 return inflater.inflate(R.layout.fragment2, container, false);16 }17 }
Fragment1的xml代码:
1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:background="#FF69B4" 6 android:orientation="vertical" > 7 8 <TextView 9 android:layout_width="wrap_content"10 android:layout_height="wrap_content"11 android:layout_gravity="center"12 android:text="这是第一个Fragment" />13 14 </LinearLayout>
Fragment2的xml代码:
1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:background="#EECBAD" 6 android:orientation="vertical" > 7 8 <TextView 9 android:layout_width="wrap_content"10 android:layout_height="wrap_content"11 android:layout_gravity="center"12 android:text="这是第二个Fragment" />13 14 </LinearLayout>
我们在activity_main.xml中添加两个Fragment,代码如下:
1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 android:layout_width="match_parent" 3 android:layout_height="match_parent" 4 android:baselineAligned="false" > 5 6 <fragment 7 android:id="@+id/fragment1" 8 android:name="com.example.fragment.Fragment1" 9 android:layout_width="wrap_content"10 android:layout_height="match_parent"11 android:layout_weight="1" />12 13 <fragment14 android:id="@+id/fragment2"15 android:name="com.example.fragment.Fragment2"16 android:layout_width="wrap_content"17 android:layout_height="match_parent"18 android:layout_weight="1" />19 20 </LinearLayout>
MainActivity代码如下:
1 package com.example.fragmentdemo; 2 3 import android.app.Activity; 4 import android.os.Bundle; 5 6 public class MainActivity extends Activity { 7 8 @Override 9 protected void onCreate(Bundle savedInstanceState) {10 super.onCreate(savedInstanceState);11 setContentView(R.layout.activity_main);12 }13 }
然后运行工程就可以显示Fragment了,下面是效果图。
2.动态添加Fragment:
【Android开发】之Fragment开发1