Android 碎片Fragment简单总结

时间:2016年5月24日16:44:21

作者:JustDo23

说明:在开发中经常会遇到使用Fragment的情况。由于功能等的需要会对Fragment有一点点深入的理解。现在简单总结记录一下。

01. ViewPager + Fragment

在使用ViewPager嵌套Fragment的时候可能需要有以下的操作

  • Activity 需要继承子 FragmentActivity

  • 需要在xml布局中添加ViewPager的控件并指定ID,具体代码如下:

      <!-- 为了兼容需要使用v4包下面的控件 -->
      <android.support.v4.view.ViewPager
          android:id="@+id/vp_reserve"
          android:layout_width="fill_parent"
          android:layout_height="match_parent"/>
    
  • 需要一个ViewPager的适配器,可以继承自FragmentPagerAdapter,同时需要重写一些方法。各个方法有各自不同的作用。

      import android.support.v4.app.Fragment;
      import android.support.v4.app.FragmentManager;
      import android.support.v4.app.FragmentPagerAdapter;
    
      import java.util.List;
    
      /**
       * 订单管理的ViewPagerIndicator适配器
       *
       * @author JustDo23
       */
      public class ReserveManageAdapter extends FragmentPagerAdapter {
    
          private List<Fragment> fragList;// 数据集合
          private String[] TITLES;// 标题
    
          public ReserveManageAdapter(FragmentManager fm, List<Fragment> fragList, String[] TITLES) {
              super(fm);
              this.fragList = fragList;
              this.TITLES = TITLES;
          }
    
          @Override
          public int getCount() {
              return fragList.size();
          }
    
          @Override
          public Fragment getItem(int arg0) {
              return fragList.get(arg0);
          }
    
          @Override
          public int getItemPosition(Object object) {
              return super.getItemPosition(object);
          }
    
          @Override
          public CharSequence getPageTitle(int position) {
              return TITLES[position % TITLES.length];
          }
      }
    
  • 之后就可以在Activity中findViewById找到相应的ViewPager控件对象。

  • 进行List<Fragment>中各个Item的初始化。Fragment对象的new

  • 如果使用的Fragment对象是相同类型的,Fragment需要使用参数的时候,需要在new之后用Bundle对象去传递参数。可以使用代码:

      Fragment needVisit = new FragReserveList();
      needVisit.setArguments(getBundle(0));// [ 0,待处理 ]
      fragList.add(needVisit);
    
      Fragment finished = new FragReserveList();
      finished.setArguments(getBundle(1));// [ 1,已处理 ]
      fragList.add(finished);
    
  • 以上需要传递参数的代码如下

      private Bundle getBundle(int type) {
          Bundle bundle = new Bundle();
          bundle.putInt("type", type);
          return bundle;
      }
    
  • 在Fragment的onCreateView方法中进行参数的获取

      Bundle bundle = this.getArguments();
      if (bundle != null) {
          type = bundle.getInt("type", -1);
      }
    
  • List<Fragment>初始化之后,进行适配器Adapter的新建与设置。

      vp_reserve.setAdapter(new ReserveManageAdapter(getSupportFragmentManager(), fragList, TITLES));
    
  • 利用setCurrentItem(int position)方法可以设置ViewPager当前显示的位置。一般情况下是不用进行设置的,这个位置是0的位置。

      vp_reserve.setCurrentItem(showPosition);
    
  • 至此就基本完成了ViewPager嵌套Fragment的实现步骤了。

02. setUserVisibleHint(boolean isVisibleToUser)方法

一般情况下,在ViewPager嵌套Fragment使用的时候,ViewPager会在初始化的时候一次性初始化2个Fragment,这两个都会走onCreateView并进入到resume状态。但是用户是只能看到第一个Fragment,第二Fragment虽然没有显示却同样进入到了resume状态。此时再用旧的想法当Fragment对用户可见的时候在onResume()方法中处理某些事情,如网络请求等这种想法就不太科学了。

在这种情况下Fragment中有个setUserVisibleHint(boolean isVisibleToUser)的方法就派上用场了。这个方法是专门设置Fragment显示和不显示的。

@Override
public void setUserVisibleHint(boolean isVisibleToUser) {
    if (isFirst && isVisibleToUser && TextUtils.isEmpty(nextUrl)) {
        getDataFromServer(ConstantURLs.RESERVE_LIST, true, true);
    }
    super.setUserVisibleHint(isVisibleToUser);
}

ViewPager会在初始化及切换Fragment的时候调用这个方法来设置Fragment的显示与否。ViewPager会在设置Adapter之后立即调用第一个、第二个fragment的setUserVisibleHint(boolean isVisibleToUser)方法设置为false,然后会对第一个fragment再次调用setUserVisibleHint(boolean isVisibleToUser)方法设置为true

需要注意的是setUserVisibleHint(boolean isVisibleToUser)方法会在ViewPager嵌套Fragment这种情况下调用。别的情况可能不会调用。

03. RadioButton + FrameLayout + Fragment

这一种机制和ViewPager嵌套Fragment是两种完全不同的机制。使用RadioButton这种机制更类似于很早以前的TabHost的使用。因为之前的TabHost使用非常复杂而且不好用,所以很多人提出了使用RadioButton + FrameLayout + Fragment这种比较流行的解决方法。

对于这种有一个参考的demo,仿微信导航栏https://github.com/JayFang1993/android-demos

  • 使用这种方法Activity 同样需要继承子 FragmentActivity

  • 在xml中需要使用控件RadioGroupFrameLayout并指定id

      <?xml version="1.0" encoding="utf-8"?>
      <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                      android:id="@+id/ll_root"
                      android:layout_width="match_parent"
                      android:layout_height="match_parent"
                      android:background="@android:color/white">
    
          <RadioGroup
              android:id="@+id/rg_nav"
              android:layout_width="match_parent"
              android:layout_height="55dip"
              android:layout_alignParentBottom="true"
              android:orientation="horizontal">
    
              <RadioButton
                  android:id="@+id/rb_message"
                  style="@style/MainNavigation"
                  android:checked="true"
                  android:drawableTop="@drawable/nav_selector_message"
                  android:text="@string/message"/>
    
              <RadioButton
                  android:id="@+id/rb_patient_manage"
                  style="@style/MainNavigation"
                  android:drawableTop="@drawable/nav_selector_patient_manage"
                  android:text="@string/patient_manage"/>
    
              <RadioButton
                  android:id="@+id/rb_me"
                  style="@style/MainNavigation"
                  android:drawableTop="@drawable/nav_selector_me"
                  android:text="@string/me"/>
          </RadioGroup>
    
          <!-- 小红点实现,完全可以删除 -->    
          <LinearLayout
              android:layout_width="match_parent"
              android:layout_height="55dip"
              android:layout_alignParentBottom="true"
              android:orientation="horizontal">
    
              <RelativeLayout style="@style/MainNavigation"/>
    
              <RelativeLayout style="@style/MainNavigation"/>
    
              <RelativeLayout
                  style="@style/MainNavigation"
                  android:gravity="right|top">
    
                  <View
                      android:id="@+id/message_view"
                      android:layout_width="10dp"
                      android:layout_height="10dp"
                      android:layout_marginRight="40dp"
                      android:background="@drawable/shape_red_round"
                      android:visibility="gone"/>
              </RelativeLayout>
          </LinearLayout>
    
          <FrameLayout
              android:id="@+id/frag_container"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:layout_above="@+id/v_divider"
              android:layout_alignParentTop="true">
          </FrameLayout>
    
      </RelativeLayout>
    
  • Activity 中通过findViewById方法来获取 RadioGroup对象的引用

  • 设置 RadioGroup的切换监听

      rg_nav.setOnCheckedChangeListener(this);
    
  • 监听方法的实现

      @Override
      public void onCheckedChanged(RadioGroup group, int checkedId) {
          switch (checkedId) {
              case R.id.rb_message:
                  setTabSelected(0);
                  break;
              case R.id.rb_patient_manage:
                  setTabSelected(1);
                  break;
              case R.id.rb_me:
                  setTabSelected(2);
                  break;
              default:
                  break;
          }
      }
    
  • 两个重点方法

      private void setTabSelected(int i) {
          FragmentManager fm = getSupportFragmentManager();
          FragmentTransaction transaction = fm.beginTransaction();
          hideTab(transaction);
          switch (i) {
              case 0:
                  fragMessage = fm.findFragmentByTag("message");
                  if (fragMessage == null) {
                      fragMessage = new FragMessage();
                      transaction.add(R.id.frag_container, fragMessage, "message");
                  } else {
                      transaction.show(fragMessage);
                  }
                  break;
              case 1:
                  fragPatientManage = fm.findFragmentByTag("patientmanage");
                  if (fragPatientManage == null) {
                      fragPatientManage = new FragPatientManage();
                      transaction.add(R.id.frag_container, fragPatientManage, "patientmanage");
                  } else {
                      transaction.show(fragPatientManage);
                  }
                  break;
              case 2:
                  fragMe = fm.findFragmentByTag("me");
                  if (fragMe == null) {
                      fragMe = new FragMe();
                      transaction.add(R.id.frag_container, fragMe, "me");
                  } else {
                      transaction.show(fragMe);
                  }
                  break;
              default:
                  break;
          }
          transaction.commitAllowingStateLoss();
      }
    
      private void hideTab(FragmentTransaction transaction) {
          if (fragMessage != null) {
              transaction.hide(fragMessage);
          }
          if (fragPatientManage != null) {
              transaction.hide(fragPatientManage);
          }
          if (fragMe != null) {
              transaction.hide(fragMe);
          }
      }
    

04. onHiddenChanged(boolean hidden)方法

这个方法和setUserVisibleHint(boolean isVisibleToUser)有些类似。但这个方法一看名称就是很明显是显示和隐藏的方法。在上边RadioButton + FrameLayout + Fragment模式中的Fragment中可以使用onHiddenChanged(boolean hidden)方法进行判断,而且setUserVisibleHint(boolean isVisibleToUser)方法是不会执行的。

05. add() show() hide() 以及 replace()

对于上边提到的RadioButton + FrameLayout + Fragment模式中使用的主要是第一种add() show() hide()方式进行Fragment的显示和隐藏。对于Fragment界面的切换还可以使用replace()的方法进行。

对于这两种方法有各自的特点,暂时没有总结到。

  • 使用replace()方法,每次会把Fragment的生命周期都走一边。

06. Fragment中的Context为空现象

在Fragment中使用context最常用的就是使用getActivity()方法进行获取上下文对象。但是有时候总是会出现getActivity()方法获取的对象为空的情况。这里忘记了当时使用的切换方式,应该是使用replace()方式的时候经常出现空的现象。

网上搜索后有提到Activity会被系统回收重建,但是Fragment不会,所以出现Fragment丢失Activity的情况。多数的解决方法是在onSaveInstanceState方法中进行处理。

本人的解决方法是在BaseFragment中定义mContext并在其onCreateView方法中进行获取。简单代码如下:

protected Context mContext;

@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    if (rootView == null) {
        rootView = inflater.inflate(getContentView(), null);
        mContext = getActivity();
        initView();
    }

    ViewGroup parent = (ViewGroup) rootView.getParent();
    if (parent != null) {
        parent.removeView(rootView);
    }

    return rootView;
}

另外提供一个搜索关键词fragment getactivity() 为空

最后

以上基本都是本人在工作过程中遇到的东西。工作比较忙碌以及本人写记录的习惯不强等原因。本人能力问题等,本片文档写的比较浅,并不很深。还是需要不断的学习努力,不断的提高。

最后附上一个刚看的连接,主要使用友盟相关http://www.jianshu.com/p/850556d33f63

不断完善,继续努力!

补丁

时间:2016年9月12日15:11:48

作者:JustDo23

简述:样式设置相关的代码做一个补充。

01. RadioButton使用的style

<!-- 导航按钮 -->
<style name="MainNavigation">
    <item name="android:layout_width">0dip</item>
    <item name="android:layout_height">match_parent</item>
    <item name="android:layout_weight">1</item>
    <item name="android:button">@null</item>
    <item name="android:background">@null</item>
    <!-- 消除不同版本上的位置错乱问题 -->
    <item name="android:drawablePadding">0dip</item>
    <item name="android:gravity">center</item>
    <item name="android:scaleX">0.8</item>
    <item name="android:scaleY">0.8</item>
    <item name="android:paddingTop">3dip</item>
    <item name="android:textSize">15sp</item>
    <item name="android:textColor">@drawable/selector_text_color_main</item>
</style>

02. 图片使用的selector

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@mipmap/ic_nav_me_on" android:state_checked="true" android:state_window_focused="false"/>
    <item android:drawable="@mipmap/ic_nav_me_off" android:state_checked="false" android:state_window_focused="false"/>
    <item android:drawable="@mipmap/ic_nav_me_off" android:state_checked="false"/>
    <item android:drawable="@mipmap/ic_nav_me_on" android:state_checked="true"/>

</selector>

03. 小红点

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="oval"
       android:useLevel="false">

    <!--小红点-->
    <gradient
        android:endColor="#F74A28"
        android:startColor="#F74A28"/>

</shape>

04. 飘红带数字

<!-- [融云]飘红 -->
<style name="Little_Red_Dot">
    <item name="android:background">@drawable/rc_unread_count_bg</item>
    <item name="android:gravity">center</item>
    <item name="android:textColor">@android:color/white</item>
    <item name="android:textSize">9sp</item>
    <item name="android:layout_centerVertical">true</item>
    <item name="android:layout_alignParentRight">true</item>
    <item name="android:layout_width">wrap_content</item>
    <item name="android:layout_height">wrap_content</item>
</style>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,542评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,596评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,021评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,682评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,792评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,985评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,107评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,845评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,299评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,612评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,747评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,441评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,072评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,828评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,069评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,545评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,658评论 2 350

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,848评论 25 707
  • afinalAfinal是一个android的ioc,orm框架 https://github.com/yangf...
    passiontim阅读 15,412评论 2 45
  • 好奇好奇心强的2岁宝宝,常常觉得自己是个小大人,凡事都想自己解决,由于经验不足,不仅常常把事情搞砸了,也给身边的人...
    宝乐汇阅读 458评论 0 1
  • 千里山野红粉妆, 万丛丹殷娇羞藏。 翩翩隐隐蝶双舞, 花思青春人思郎。
    w小郭阅读 257评论 0 1
  • 前一晚便定好,我等他踢完球,喝茶吃饭。 选定在达德喝茶,倒是个闹中取静的好地方,雪芽的茶具两人都喜欢。 突然问到我...
    王炯炯阅读 396评论 0 0