转载请注明出处:http://blog.csdn.net/xiaanming/article/details/10766053 之前用JakeWharton的开源框架ActionBarSherlock和ViewPager实现了对网易新闻客户端Tab标签的功能,ActionBarSherlock是在3 ...
分类:
移动开发 时间:
2016-05-16 17:19:14
阅读次数:
385
一、Fragment对象
(1)Fragment 是什么
1)Activity中的模块化对象。
2)Android3.0中的一个新特性。
(2)Fragment
应用场合(when,why)
1)适配各种屏幕尺寸.
2)对界面中的UI内容进行模块化.
例如:
1)radiogroup+fragment+viewpager 实现底部菜单
2)actionBar(tab)+frag...
分类:
其他好文 时间:
2016-05-13 04:29:06
阅读次数:
157
一前言 在微信中,tab底栏有四个按钮,中间是可以左右滑动的界面,上面一个标题栏,大致情况如此,今天我们就来模仿一下,写出微信的UI。 好,废话咱少讲,先来上图看效果。 二XML布局 1.Tab底栏 bottle.xml 在XML布局中,tab底栏我们用一个LinearLayout嵌套四个Linea ...
分类:
微信 时间:
2016-04-09 10:41:34
阅读次数:
413
———-方法一:———- 效果图: 须要的组件: ViewPager+PagerTabStrip 布局文件代码: <!--xmlns:android_custom="http://schemas.android.com/apk/res/com.pengkv.bigo"--> <RelativeLay
分类:
其他好文 时间:
2016-03-06 09:53:25
阅读次数:
234
ViewPager实现Animation动画引导页 http://blog.csdn.net/ye_scofield/article/details/44831357SurfaceView实现动画引导页(1) http://blog.csdn.net/ye_scofield/article/de.....
分类:
其他好文 时间:
2015-12-28 12:16:50
阅读次数:
149
1 package com.imooc.tab04; 2 3 import android.os.Bundle; 4 import android.support.v4.app.FragmentActivity; 5 import android.support.v4.v...
分类:
其他好文 时间:
2015-12-15 12:17:15
阅读次数:
316
1 2 3 9 17 25 30 31 32 40 48 53 54 55 63 71 76 77 78 ...
分类:
移动开发 时间:
2015-12-14 16:17:18
阅读次数:
184
1:ViewPager实现欢迎页面动画效果ViewPager实现欢迎页面动画滑动切换view效果,页面切换添加优美的动画,//主要代码实现publicvoidanimateSecondScreenClock(floatposition){if(mCurrentDirection==Path.Direction.CCW){mCurrentDirection=Path.Direction.CW..
分类:
其他好文 时间:
2015-11-23 14:59:13
阅读次数:
162
应用中常常遇到图片轮播的需求,这时候就需要用到viewpager这个组件。viewpager是android support v4 中提供的一个组件。viewpager使用需要以下几步骤:1.在布局文件中添加viewpager组件1 5 ViewPager路径要写完整,否则会出现问题;2.创...
分类:
其他好文 时间:
2015-11-21 15:51:09
阅读次数:
216
MainActivity: 1 package com.zzw.fragmentteb; 2 3 import java.util.ArrayList; 4 5 import android.graphics.Color; 6 import android.os.Bundle; 7 import.....
分类:
其他好文 时间:
2015-11-20 20:00:31
阅读次数:
186