fragment的概念是在Android 3.0版本开始被引入的,它的主要目的是用在大屏设备比如平板电脑上面,支持更加动态和灵活的UI设计,因为平板电脑的屏幕更大可以放置更多的控件。
fragment在你的应用中应当是一个模块化和可重用的组件,因为它定义了它自己的布局,以及通过使用它自己的声明周期回调方法定义了它自己的行为,你可以将Fragment包含到多个Activity中。
一个fragment可以作为Activity界面的一个组件;一个Activity中可以有多个fragment并且一个fragment也可以被应用到多个Activity中;fragment作为一个独立的组件可以响应它自己的输入事件;fragment也有自己独立的生命周期,但是受到Activity宿主生命周期的影响。
注意
1、创建project的时候最低兼容版本要选择leve 11否则运行会出错。
2、添加fragment一定要给一个唯一的标识id/Tag
所谓的静态加载就是在布局中直接写上fragment布局,再创建extends Fragment的class,在该class中引入fragment具体的子布局。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" >
<fragment android:id="@+id/fragment" android:name="com.example.sptemberfragment.MyFirstFragment" android:layout_width="match_parent" android:layout_height="match_parent" />
</RelativeLayout>
package com.example.sptemberfragment;
import android.os.Bundle;
import android.app.Activity;
import android.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.view.Menu;
public class MainActivity extends FragmentActivity {
private Fragment fragment;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.Toast;
public class MyFirstFragment extends Fragment {
private Button mbtn;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.item_fragment, container, false);
mbtn=(Button) view.findViewById(R.id.button);
mbtn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(getActivity(), "我点击了按钮", Toast.LENGTH_LONG).show();
}
});
return view;
}
}
在布局中将原来的fragment去除,添加一个LinearLayout (用于以后将fragment添加到其中)然后再在activity中动态添加,其他不变。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" >
<LinearLayout android:id="@+id/linear" android:layout_width="match_parent" android:layout_height="match_parent" ></LinearLayout>
</RelativeLayout>
public class MainActivity extends FragmentActivity {
private Fragment fragment;
private LinearLayout linear;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
linear=(LinearLayout) findViewById(R.id.linear);
MyFirstFragment fragmentzi=new MyFirstFragment();
FragmentManager fragment=getSupportFragmentManager();
FragmentTransaction beginTransaction =
fragment.beginTransaction();
beginTransaction.add(R.id.linear, fragmentzi);
beginTransaction.commit();
}
}
在主布局中加FrameLayout用于存放fragment,三个子布局分别是一个Button、TextView、EditView此处布局不再展示。
package com.example.sptemberfragment;
import android.os.Bundle;
import android.app.Activity;
import android.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.FrameLayout;
import android.widget.LinearLayout;
public class MainActivity extends FragmentActivity implements OnClickListener {
private FragmentManager fragment;
private FrameLayout mframe;
private Button mbtn1;
private Button mbtn2;
private Button mbtn3;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mframe = (FrameLayout) findViewById(R.id.frame);
mbtn1 = (Button) findViewById(R.id.button1);
mbtn2 = (Button) findViewById(R.id.button2);
mbtn3 = (Button) findViewById(R.id.button3);
mbtn1.setOnClickListener(this);
mbtn2.setOnClickListener(this);
mbtn3.setOnClickListener(this);
fragment = getSupportFragmentManager();
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.button1: {
FragmentTransaction beginTransaction = fragment.beginTransaction();
//framelayout跟贴纸似的可以一层一层的添加
//为了让fragment不重叠在一起,使用replace替换成要显示的fragment
beginTransaction.replace(R.id.frame, new MyFirstFragment());
//addToBackStack用于压栈,当点击back时可以回到上一个状态
beginTransaction.addToBackStack(null);
beginTransaction.commit();
}
break;
case R.id.button2: {
FragmentTransaction beginTransaction = fragment.beginTransaction();
beginTransaction.replace(R.id.frame, new MySecondFragment());
beginTransaction.addToBackStack(null);
beginTransaction.commit();
}
break;
case R.id.button3: {
FragmentTransaction beginTransaction = fragment.beginTransaction();
beginTransaction.replace(R.id.frame, new MyThirdFragment());
beginTransaction.addToBackStack(null);
beginTransaction.commit();
}
break;
default:
break;
}
}
}
添加fragment——>onAttach()——>onCreate()——>onCreateView()——>onActivityCreate()——>onStart()——>onResume()——>碎片已激活——>onPause()——>onstop——>onDestroyView()——>onDestroy()——>onDetach()——>碎片被销毁