这周比较闲,计划系统的学习一下android开发,我本是一名IOS程序员,对手机开发还是有自己的一套思路的, 固这套思路用到我当前学android上了,先选择从Main页面的tabbar部分代码入手, Android框架布局方式大致分两种, TabActivity+TabHost+Activity,...
分类:
移动开发 时间:
2015-07-05 12:16:41
阅读次数:
2714
难得有时间上来写博客。
fragment虽然好用,但个人还是觉得有利有弊。
网上大都说切换状态,有挺多问题,
有很多种解决方案。
第一种常常遇到的情况:
if(rootView == null)
rootView = inflater.inflate(R.layout.fragment_home, container,false);
ViewGroup parent = (...
分类:
移动开发 时间:
2015-06-28 21:39:28
阅读次数:
305
界面如图所示: 采用FragmentActivity和FragmentTabHost实现主框架的搭建。知识点:(1)FragmentActivity 【API文档说明】 Base class for activities that want to use thesupport-based Fragm...
分类:
移动开发 时间:
2015-06-26 16:15:40
阅读次数:
181
采用FragmentTabHost的综合布局实现的新浪新闻的效果。...
分类:
其他好文 时间:
2015-06-24 16:36:20
阅读次数:
132
http://www.cnblogs.com/lichenwei/p/3985121.html记得之前写过2篇关于底部菜单的实现,由于使用的是过时的TabHost类,虽然一样可以实现我们想要的效果,但作为学习,还是需要来了解下这个新引入类FragmentTabHost之前2篇文章的链接:安卓开发复习...
分类:
其他好文 时间:
2015-06-16 01:15:36
阅读次数:
120
Fragment保存页面不销毁在用fragmenttabhost做页面切换的时候,发现只要一来回切换fragment,fragment页面就会重新初始化,也就是执行onCreateView()方法,导致每次Fragment的布局都重绘,无法保持Fragment原有状态解决方案:在Fragment onCreateView方法中缓存View
代码实现:protected WeakReference<V...
分类:
其他好文 时间:
2015-05-21 22:45:46
阅读次数:
193
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
主要布局如下:
<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?怎么用getSharedPreferencespublic View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle sav...
分类:
其他好文 时间:
2015-04-15 12:47:36
阅读次数:
244
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