码迷,mamicode.com
首页 >  
搜索关键字:fragmenttabhost    ( 88个结果
android FragmentActivity+FragmentTabHost+Fragment框架布局
这周比较闲,计划系统的学习一下android开发,我本是一名IOS程序员,对手机开发还是有自己的一套思路的, 固这套思路用到我当前学android上了,先选择从Main页面的tabbar部分代码入手, Android框架布局方式大致分两种, TabActivity+TabHost+Activity,...
分类:移动开发   时间:2015-07-05 12:16:41    阅读次数:2714
android fragment+ FragmentTabHost+viewpager 切换状态不保存的问题
难得有时间上来写博客。 fragment虽然好用,但个人还是觉得有利有弊。 网上大都说切换状态,有挺多问题, 有很多种解决方案。 第一种常常遇到的情况: if(rootView == null) rootView = inflater.inflate(R.layout.fragment_home, container,false); ViewGroup parent = (...
分类:移动开发   时间:2015-06-28 21:39:28    阅读次数:305
淘宝(阿里巴巴)手机客户端开发日记第一篇 android 主框架搭建(二)
界面如图所示: 采用FragmentActivity和FragmentTabHost实现主框架的搭建。知识点:(1)FragmentActivity 【API文档说明】 Base class for activities that want to use thesupport-based Fragm...
分类:移动开发   时间:2015-06-26 16:15:40    阅读次数:181
Fragment+TabHost模仿新浪新闻布局界面
采用FragmentTabHost的综合布局实现的新浪新闻的效果。...
分类:其他好文   时间:2015-06-24 16:36:20    阅读次数:132
转-Fragment+FragmentTabHost组件(实现新浪微博底部菜单)
http://www.cnblogs.com/lichenwei/p/3985121.html记得之前写过2篇关于底部菜单的实现,由于使用的是过时的TabHost类,虽然一样可以实现我们想要的效果,但作为学习,还是需要来了解下这个新引入类FragmentTabHost之前2篇文章的链接:安卓开发复习...
分类:其他好文   时间:2015-06-16 01:15:36    阅读次数:120
fragment保存页面不销毁
Fragment保存页面不销毁在用fragmenttabhost做页面切换的时候,发现只要一来回切换fragment,fragment页面就会重新初始化,也就是执行onCreateView()方法,导致每次Fragment的布局都重绘,无法保持Fragment原有状态解决方案:在Fragment onCreateView方法中缓存View 代码实现:protected WeakReference<V...
分类:其他好文   时间:2015-05-21 22:45:46    阅读次数:193
FragmentTabHost简单小例子
Tab页面的布局R.layout.tabhost_layout:     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:orientation="vert...
分类:其他好文   时间:2015-05-13 16:52:54    阅读次数:116
FragmentTabHost and Fragment 用法
主要布局如下: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="...
分类:其他好文   时间:2015-04-29 15:10:59    阅读次数:177
使用fragmenttabhost后,子fragment怎么获取ID?怎么用getSharedPreferences
使用fragmenttabhost后,子fragment怎么获取ID?怎么用getSharedPreferencespublic View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle sav...
分类:其他好文   时间:2015-04-15 12:47:36    阅读次数:244
FragmentTabHost+ViewPager实现底部按钮
1 package com.example.fragmenttabdemo; 2 3 import java.util.ArrayList; 4 import java.util.List; 5 6 import android.annotation.SuppressLint; ...
分类:其他好文   时间:2015-03-18 20:03:56    阅读次数:238
88条   上一页 1 ... 4 5 6 7 8 9 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!