使用fragmenttabhost后,子fragment怎么获取ID?怎么用getSharedPreferencespublic View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle sav...
分类:
其他好文 时间:
2015-04-15 12:47:36
阅读次数:
244
在切换Fragment的时候出现:The specified child already has a parent. You must call removeView()异常。错误主要出在Fragment中的oncreateview方法中。可能引起错误的写法:View view = inflater...
分类:
其他好文 时间:
2015-04-10 17:15:52
阅读次数:
114
Fragment生命周期: onAttach方法:Fragment和Activity建立关联的时候调用。 onCreateView方法:为Fragment加载布局时调用。 onActivityCreated方法:当Activity中的onCreate方法执行完后调用。 onDestroyView方法...
分类:
移动开发 时间:
2015-04-09 15:42:49
阅读次数:
204
我创建了1个activity里有4个tab的fragment,假如4个tab为ABCD在tab C中,初始化UI,UI中有一个EditText: public View onCreateView(LayoutInflater inflater, ViewGroup container, Bun...
分类:
其他好文 时间:
2015-04-07 00:42:22
阅读次数:
169
一.fragment的生命周期,具体方法什么时候调用就不说了。二 在activity中使用fragment和通信有两种常见的方式,1.静态的方式 (1)定义一个类继承Fragment,如 MyFragment,这里复写onCreateView()方法和onAttach()方法 (2)onCrea.....
分类:
移动开发 时间:
2015-04-03 13:26:37
阅读次数:
145
前面讨论过设备旋转的问题,当设备旋转时配置发生改变,系统默认的是销毁Activtiy,然后再重建Activity,因为新的配置可能需要新的资源。我们可以在AndroidManifest.xml的Activity标签中设置Android:configChanges的属性,然后重载onConfigurationChanged(Configuration),那么指定的配置发生改变时就不会销毁和重建Act...
分类:
其他好文 时间:
2015-03-11 17:23:20
阅读次数:
121
Activity和Fragment 都有自己的生命周期,而且很类似.Fragment比Activity多了onAttach()和onCreateView()这些方法.整体它们两者是一样的周期,都会经历从创建视图( onCreate(),onCreateView(),onStart() )到暂停( onPause(), onStop() ) 到重新返回( onResume() ) 到最后销毁( on...
分类:
移动开发 时间:
2015-03-03 16:50:38
阅读次数:
28020
上次写了一个问答项目,用的fragment+viewpager架构,后来发现,划了几次之后,再划回来,会重新加载布局,重新获取数据,这样整个程序和卡,并且占用太多的网络资源。
当时的解决办法是,自己重写view,用最基本的Basepageradapder,算是不是很优雅的解决了问题。
当时知道是重新调用onCreateView方法原因,但是没有好的解决办法,现在知道了,这里记载一下。
我...
分类:
其他好文 时间:
2015-03-01 15:47:42
阅读次数:
148
首先,新建一个继承了fragment类的类,在oncreateview方法中,使用方法的参数inflater,用其inflater.inflate(R.layout.fragment1,container,false);来新建一个view并在此方法中返回该VIEW,这就是我们的fragment的界面...
分类:
其他好文 时间:
2015-02-03 22:37:10
阅读次数:
156
制作可以左右移动的视图大概的原理是Fragment + ViewPage,向ViewPage中添加Fragment1、自定义一个Framgent 类: public class TabFragment extends Fragment{ }2、重写父类的onCreateView: @Override...
分类:
移动开发 时间:
2015-01-22 17:05:40
阅读次数:
215