1.生命周期
场景演示 : 切换到该Fragment
11-29 14:26:35.095: D/AppListFragment(7649): onAttach
11-29 14:26:35.095: D/AppListFragment(7649): onCreate
11-29 14:26:35.095: D/AppListFragment(7649): onCreateView...
分类:
移动开发 时间:
2016-07-13 23:22:47
阅读次数:
259
创建DialogFragment 跟通常的创建Fragment差不多,XML,继承DialogFragment,复写onCreateView() 显示DialogFragment 和其他fragment一样, DialogFragment 实例也是由托管activity的 FragmentManag ...
分类:
其他好文 时间:
2016-06-14 23:43:22
阅读次数:
656
问题如下: 在fragment的onCreateView中执行下边的代码时: BindView() 中的findViewById方法无效 解决办法:重写fragment的setUserVisibleHint方法 ...
分类:
其他好文 时间:
2016-05-29 16:32:03
阅读次数:
268
咕嘟咕嘟 public class UserFragment extends Fragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanc... ...
分类:
其他好文 时间:
2016-05-26 10:15:17
阅读次数:
130
在做项目的时候 ,做到了一个Activity里面有两个Tab切换,每一个Tab是一个Fragment展示内容,当两个Tab来回切换的时候,报了一个错误
经过查找原因,原来是Fragment中OnCreateView()的方法调用错了:
正确的方法应该是:
查阅多方资料得知,我们都LayoutInflater的使用存在误区
我们最常用的便是 LayoutI...
分类:
移动开发 时间:
2016-05-12 23:49:17
阅读次数:
231
在上篇文章中我们主要讲解了LayoutInflater渲染xml布局文件的流程,文中讲到如果在渲染之前为LayoutInflater设置了Factory,那么在渲染每一个View视图时都会调用Factory的onCreateView()方法,因此可以拿onCreateView()方法做切入口实现主题切换功能。如果你不清楚LayoutInflater的渲染流程,请点击这里。今天我们就从实战出发来实现自己的主题切换功能。...
分类:
移动开发 时间:
2016-05-12 19:12:18
阅读次数:
321
Fragment是3.0引入的新组件,在3.0之前需要引入v4包的Fragment进行向下兼容,在项目中会频繁用到。
先说下3.0的Fragment用法。
其中,Fragment的生命周期就不多说了,首先构建Fragment 的View对象。
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup cont...
分类:
其他好文 时间:
2016-05-07 09:51:38
阅读次数:
206
Fragment生命周期 1.onAttach() 2.onCreate() 3.onCreateView() 4.onActivityCreated() 5.onStart() 6.onResume() 7.onPause() 8.onStop() 9.onDestoryView() 10.onD ...
分类:
移动开发 时间:
2016-05-04 10:27:15
阅读次数:
157
在 oncreateView 里面 进行页面初始化 view view.findViewById this 改成 getActivity() ...
分类:
其他好文 时间:
2016-05-01 20:28:22
阅读次数:
110
方法 描述 onAttach(Activity) 当前Fragment与Activity关联,调用! onCreate() 完成fragment的初始化创建 onCreateView() 创建并返回与当前fragment相关联的层次视图view onActivityCreated() 主activi ...
分类:
其他好文 时间:
2016-04-30 19:38:32
阅读次数:
128