Fragment的简单使用

来源:互联网 发布:ecko unltd淘宝旗舰店 编辑:程序博客网 时间:2024/05/22 04:47

Fragment,可以理解为是代替activity的轻量级的替代品,而且使用非常灵活多变,而且管理方便,对整个的程序的可维护性和可扩展性都起到很好的的帮助,可以让主函数看起来更加清晰明了。

学习后总结了一下,发现在实际开发中Fragment最常用的地方是:Viewpager+Fragment;侧滑Fragment


Fragment有自己的生命周期:(其生命周期会受到ativity的生命周期的控制)


onAttach(Activity):当Fragment与Activity发生关联时调用。


onCreateView(LayoutInflater, ViewGroup,Bundle):创建该Fragment的视图


onActivityCreated(Bundle):当Activity的onCreate方法返回时调用


onDestoryView():与onCreateView想对应,当该Fragment的视图被移除时调用


onDetach():与onAttach相对应,当Fragment与Activity关联被取消时调用


注意:除了onCreateView,其他的所有方法如果你重写了,必须调用父类对于该方法的实现,


获取FragmentManage的方式:

getFragmentManager() // v4中,getSupportFragmentManager


主要的操作都是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。



一:Fragment的静态使用:

这是使用Fragment最简单的一种方式,把Fragment当成普通的控件,直接写在Activity的布局文件中。步骤:

1、继承Fragment,重写onCreateView决定Fragemnt的布局

2、在Activity中声明此Fragment,就当和普通的View一样


activity_main.xml

<strong><span style="font-size: 14px;"><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" android:paddingLeft="@dimen/activity_horizontal_margin"    android:paddingRight="@dimen/activity_horizontal_margin"    android:paddingTop="@dimen/activity_vertical_margin"    android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">    <fragment        android:id="@+id/id_fragment_title"        </span><span style="font-size:24px;">android:name="ivo_chuanzhi.fragment.MyFragment"</span><span style="font-size: 14px;">        android:layout_width="fill_parent"        android:layout_height="45dp" />    <fragment        android:layout_below="@id/id_fragment_title"        android:id="@+id/id_fragment_content"        </span></strong><span style="font-size:24px;font-weight: bold;">android:name="ivo_chuanzhi.fragment.Two_fragment"</span><span style="font-weight: bold; font-size: 14px;">        android:layout_width="fill_parent"        android:layout_height="fill_parent" /></RelativeLayout></span>

主函数什么都不用写


这里给出一个MyFragment的代码:

public class MyFragment extends Fragment {    private  View view;    private TextView textView;    //Context context;    @Override    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {       // context = getActivity();   可以通过上下文对象get到当前Activity        //为MyFragment增加视图,该视图是one_fragment        view = inflater.inflate(R.layout.one_fragment,container,false);        textView = (TextView) view.findViewById(R.id.textView);       return view;    }}


二:Fragment的动态使用(使用原博主的代码)

下面介绍如何动态的添加、更新、以及删除Fragment

为了动态使用Fragment,我们修改一下Actvity的布局文件,中间使用一个FrameLayout,下面添加四个按钮

<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" >        <fragment          android:id="@+id/id_fragment_title"          android:name="com.zhy.zhy_fragments.TitleFragment"          android:layout_width="fill_parent"          android:layout_height="45dp" />        <include          android:id="@+id/id_ly_bottombar"          android:layout_width="fill_parent"          android:layout_height="55dp"          android:layout_alignParentBottom="true"          layout="@layout/bottombar" />        <FrameLayout          android:id="@+id/id_content"          android:layout_width="fill_parent"          android:layout_height="fill_parent"          android:layout_above="@id/id_ly_bottombar"          android:layout_below="@id/id_fragment_title" />    </RelativeLayout>  

底部四个按钮的布局就不贴了

下面主Activity

import android.app.Activity;  import android.app.FragmentManager;  import android.app.FragmentTransaction;  import android.os.Bundle;  import android.view.View;  import android.view.View.OnClickListener;  import android.view.Window;  import android.widget.LinearLayout;    public class MainActivity extends Activity implements OnClickListener  {      private LinearLayout mTabWeixin;      private LinearLayout mTabFriend;        private ContentFragment mWeixin;      private FriendFragment mFriend;        @Override      protected void onCreate(Bundle savedInstanceState)      {          super.onCreate(savedInstanceState);          requestWindowFeature(Window.FEATURE_NO_TITLE);          setContentView(R.layout.activity_main);            // 初始化控件和声明事件          mTabWeixin = (LinearLayout) findViewById(R.id.tab_bottom_weixin);          mTabFriend = (LinearLayout) findViewById(R.id.tab_bottom_friend);          mTabWeixin.setOnClickListener(this);          mTabFriend.setOnClickListener(this);            // 设置默认的Fragment          setDefaultFragment();      }        private void setDefaultFragment()      {          FragmentManager fm = getFragmentManager();          FragmentTransaction transaction = fm.beginTransaction();          mWeixin = new ContentFragment();          transaction.replace(R.id.id_content, mWeixin);          transaction.commit();      }        @Override      public void onClick(View v)      {          FragmentManager fm = getFragmentManager();          // 开启Fragment事务          FragmentTransaction transaction = fm.beginTransaction();            switch (v.getId())          {          case R.id.tab_bottom_weixin:              if (mWeixin == null)              {                  mWeixin = new ContentFragment();              }              // 使用当前Fragment的布局替代id_content的控件              transaction.replace(R.id.id_content, mWeixin);              break;          case R.id.tab_bottom_friend:              if (mFriend == null)              {                  mFriend = new FriendFragment();              }              transaction.replace(R.id.id_content, mFriend);              break;          }          // transaction.addToBackStack();          // 事务提交          transaction.commit();      }    }  

可以看到我们使用FragmentManager对Fragment进行了动态的加载,这里使用的是replace方法

注:如果使用Android3.0以下的版本,需要引入v4的包,然后Activity继承FragmentActivity,然后通过getSupportFragmentManager获得FragmentManager。不过还是建议版Menifest文件的uses-sdk的minSdkVersion和targetSdkVersion都改为11以上,这样就不必引入v4包了

转载自:http://blog.csdn.net/lmj623565791/article/details/37970961#comments

0 0
原创粉丝点击