Android运行在各种各样的设备中,有小屏幕的手机,超大屏的平板甚至电视。针对屏幕尺寸的差距,很多情况下,都是先针对手机开发一套App,然后拷贝一份,修改布局以适应平板神马超级大屏的。难道无法做到一个App可以同时适应手机和平板么,当然了,必须有啊。Fragment的出现就是为了解决这样的问题。你可以把Fragment当成Activity的一个界面的一个组成部分,甚至Activity的界面可以完全有不同的Fragment组成,更帅气的是Fragment拥有自己的生命周期和接收、处理用户的事件,这样就不必在Activity写一堆控件的事件处理的代码了。更为重要的是,你可以动态的添加、替换和移除某个Fragment。
Fragment必须是依存与Activity而存在的,因此Activity的生命周期会直接影响到Fragment的生命周期。官网这张图很好的说明了两者生命周期的关系:
可以看到Fragment比Activity多了几个额外的生命周期回调方法:注意:除了onCreateView,其他的所有方法如果你重写了,必须调用父类对于该方法的实现。
3.使用
静态使用Fragment:这是Fragment最简单的使用方式,直接在XML布局文件当中使用Fragment标签,将其当作普通的控件来使用。用name属性指向Fragment类,
步骤:
1、继承Fragment类,重写OnCreateView方法,决定Fragment的布局。
2、在XML布局文件中定义Fragment标签,name属性指向定义的Fragment,在Activity中引用布局。
下面是一个例子:
Fragment代码:xml布局文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@android:color/holo_blue_light"> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/xml_fragment_btn" android:text="第一个Fragment"/> </LinearLayout>java代码:
package com.example.fragment.fragmentapp.fragment; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.Toast; import com.example.fragment.fragmentapp.R; /** * A simple {@link Fragment} subclass. */ public class XmlFragment extends Fragment { public static XmlFragment newInstance() { Bundle args = new Bundle(); XmlFragment fragment = new XmlFragment(); fragment.setArguments(args); return fragment; } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.fragment_xml, container, false); Button button = (Button) view.findViewById(R.id.xml_fragment_btn); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Toast.makeText(getActivity(),"静态使用的Fragment",Toast.LENGTH_SHORT).show(); } }); return view; } }
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:id="@+id/txt" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="静态使用Fragment实例" /> <fragment android:id="@+id/fragment_one" android:name="com.example.fragment.fragmentapp.fragment.XmlFragment" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@+id/txt" android:layout_margin="10dp" /> </RelativeLayout>
package com.example.fragment.fragmentapp; import android.os.Bundle; import android.support.v4.app.FragmentActivity; public class MainActivity extends FragmentActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } }
效果图:
可以看出,在XML中静态引用Frament很简单,只需定义Fragment属性即可。fragmet的使用跟Activity的使用类似,也可以实现按钮监听和其他类似操作,可以当成一个小型Activity来处理,只不过他们的生命周期各不相同罢了。
动态添加Fragment:
步骤1、定义好Fragment。
2、在Activity Xml布局中预设要使用Fragment的位置,在Activity中动态设置和移除Fragment。涉及到的类和方法有:FragmentManager FragmentTransaction Add() Commit() 其他还有Remover() replace() hide() show()方法等。
实例:
FragmentOne:
<FrameLayout 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="com.example.fragment.fragmentapp.fragment.FragmentOne"> <!-- TODO: Update blank fragment layout --> <TextView android:layout_width="match_parent" android:layout_height="match_parent" android:text="Fragment_one" android:gravity="center" android:background="@android:color/holo_green_dark"/> </FrameLayout>
package com.example.fragment.fragmentapp.fragment; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.example.fragment.fragmentapp.R; /** * A simple {@link Fragment} subclass. */ public class FragmentOne extends Fragment { public static FragmentOne newInstance() { Bundle args = new Bundle(); FragmentOne fragment = new FragmentOne(); fragment.setArguments(args); return fragment; } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment return inflater.inflate(R.layout.fragment_fragment_one, container, false); } }
<FrameLayout 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="com.example.fragment.fragmentapp.fragment.FragmentTwo"> <!-- TODO: Update blank fragment layout --> <TextView android:layout_width="match_parent" android:layout_height="match_parent" android:text="Fragment_Two" android:gravity="center" android:background="@android:color/holo_orange_dark"/> </FrameLayout>
package com.example.fragment.fragmentapp.fragment; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.example.fragment.fragmentapp.R; /** * A simple {@link Fragment} subclass. */ public class FragmentTwo extends Fragment { public static FragmentTwo newInstance() { Bundle args = new Bundle(); FragmentTwo fragment = new FragmentTwo(); fragment.setArguments(args); return fragment; } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment return inflater.inflate(R.layout.fragment_fragment_two, container, false); } }
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:id="@+id/txt" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="静态使用Fragment实例" /> <fragment android:id="@+id/fragment_one" android:name="com.example.fragment.fragmentapp.fragment.XmlFragment" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@+id/txt" android:layout_margin="10dp" /> <LinearLayout android:id="@+id/fragment_linearLayout" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@id/fragment_one" android:orientation="horizontal"> <Button android:id="@+id/fragment_btn_add" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="add方法" /> <Button android:id="@+id/fragment_btn_replace" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="replace方法" /> </LinearLayout> <FrameLayout android:id="@+id/fragment_content" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@id/fragment_linearLayout" /> </RelativeLayout>
package com.example.fragment.fragmentapp; import android.os.Bundle; import android.support.v4.app.FragmentActivity; import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentTransaction; import android.view.View; import android.widget.Button; import com.example.fragment.fragmentapp.fragment.FragmentOne; import com.example.fragment.fragmentapp.fragment.FragmentTwo; public class MainActivity extends FragmentActivity implements View.OnClickListener{ private Button mAddBtn,mReplaceBtn; private FragmentManager manager; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mAddBtn = (Button) findViewById(R.id.fragment_btn_add); mAddBtn.setOnClickListener(this); mReplaceBtn = (Button) findViewById(R.id.fragment_btn_replace); mReplaceBtn.setOnClickListener(this); manager = getSupportFragmentManager(); FragmentTransaction ft = manager.beginTransaction(); ft.add(R.id.fragment_content, FragmentOne.newInstance()).commit();//提交事务 } @Override public void onClick(View v) { switch (v.getId()){ case R.id.fragment_btn_add: manager.beginTransaction().replace(R.id.fragment_content,FragmentOne.newInstance()).commit(); break; case R.id.fragment_btn_replace: manager.beginTransaction().replace(R.id.fragment_content, FragmentTwo.newInstance()).commit(); break; } } }
Fragment常用的三个类:
android.app.Fragment 主要用于定义Fragment
android.app.FragmentManager 主要用于在Activity中操作Fragment
android.app.FragmentTransaction 保证一些列Fragment操作的原子性,熟悉事务这个词,一定能明白~
a、获取FragmentManage的方式:
getFragmentManager() // v4中,getSupportFragmentManager
b、主要的操作都是FragmentTransaction的方法
FragmentTransaction transaction = fm.benginTransatcion();//开启一个事务
transaction.add()
往Activity中添加一个Fragment
transaction.remove()
从Activity中移除一个Fragment,如果被移除的Fragment没有添加到回退栈(回退栈后面会详细说),这个Fragment实例将会被销毁。
transaction.replace()
使用另一个Fragment替换当前的,实际上就是remove()然后add()的合体~
transaction.hide()
隐藏当前的Fragment,仅仅是设为不可见,并不会销毁
transaction.show()
显示之前隐藏的Fragment
detach()
会将view从UI中移除,和remove()不同,此时fragment的状态依然由FragmentManager维护。
attach()
重建view视图,附加到UI上并显示。
transatcion.commit()//提交一个事务
注意:常用Fragment的哥们,可能会经常遇到这样Activity状态不一致:State loss这样的错误。主要是因为:commit方法一定要在Activity.onSaveInstance()之前调用。
上述,基本是操作Fragment的所有的方式了,在一个事务开启到提交可以进行多个的添加、移除、替换等操作。
值得注意的是:如果你喜欢使用Fragment,一定要清楚这些方法,哪个会销毁视图,哪个会销毁实例,哪个仅仅只是隐藏,这样才能更好的使用它们。
a、比如:我在FragmentA中的EditText填了一些数据,当切换到FragmentB时,如果希望会到A还能看到数据,则适合你的就是hide和show;也就是说,希望保留用户操作的面板,你可以使用hide和show,当然了不要使劲在那new实例,进行下非null判断。
b、再比如:我不希望保留用户操作,你可以使用remove(),然后add();或者使用replace()这个和remove,add是相同的效果。
c、remove和detach有一点细微的区别,在不考虑回退栈的情况下,remove会销毁整个Fragment实例,而detach则只是销毁其视图结构,实例并不会被销毁。那么二者怎么取舍使用呢?如果你的当前Activity一直存在,那么在不希望保留用户操作的时候,你可以优先使用detach。
注意:Support.V4包的统一。如果在写Fragment时导入的V4包下的Fragment,那么在写Activity时要继承FragmentActivity。得到FragmentManger要调用getSupportFragmentManger()方法。对应的,若是导入的是android.app.Fragment包,那么写Activity时只需继承Activity即可,当然得到FragmentManger调用的方法当然就是getFragmentManger()方法了。若不对应,运行时要报错。