三个标签页置于顶端

效果图:

在文件BoardTabHost.java中定义页面切换的效果;切换页面时,当前页面滑出,目标页面滑入。这是2个不同的动画设定动画时要区分对待

import android.content.Context;

import android.util.AttributeSet;

import android.view.animation.Animation;

import android.view.animation.TranslateAnimation;

import android.widget.TabHost;

public class BoardTabHost extends TabHost {

private int currentTab = 0;

int duration = 1000;// ms; the bigger the slower

public BoardTabHost(Context context) {

super(context);

}

public BoardTabHost(Context context, AttributeSet attr) {

super(context, attr);

}

@Override

public void setCurrentTab(int index) {

// we need two animation here: first one is fading animation, 2nd one is coming animation

// translateAnimation of fading fragment

if (index > currentTab) {// fly right to left and leave the screen

TranslateAnimation translateAnimation = new TranslateAnimation(

Animation.RELATIVE_TO_SELF/* fromXType */, 0f/* fromXValue */,

Animation.RELATIVE_TO_SELF/* toXType */, -1.0f/* toXValue */,

Animation.RELATIVE_TO_SELF, 0f,

Animation.RELATIVE_TO_SELF, 0f

);

translateAnimation.setDuration(duration);

getCurrentView().startAnimation(translateAnimation);

} else if (index < currentTab) {// fly left to right

TranslateAnimation translateAnimation = new TranslateAnimation(

Animation.RELATIVE_TO_SELF, 0f,

Animation.RELATIVE_TO_SELF, 1.0f,

Animation.RELATIVE_TO_SELF, 0f,

Animation.RELATIVE_TO_SELF, 0f

);

translateAnimation.setDuration(duration);

getCurrentView().startAnimation(translateAnimation);

}

super.setCurrentTab(index);// the current tab is index now

// translateAnimation of adding fragment

if (index > currentTab) {

TranslateAnimation translateAnimation = new TranslateAnimation(

Animation.RELATIVE_TO_PARENT, 1.0f,/* fly into screen */

Animation.RELATIVE_TO_PARENT, 0f, /* screen location */

Animation.RELATIVE_TO_PARENT, 0f,

Animation.RELATIVE_TO_PARENT, 0f

);

translateAnimation.setDuration(duration);

getCurrentView().startAnimation(translateAnimation);

} else if (index < currentTab) {

TranslateAnimation translateAnimation = new TranslateAnimation(

Animation.RELATIVE_TO_PARENT, -1.0f,

Animation.RELATIVE_TO_PARENT, 0f,

Animation.RELATIVE_TO_PARENT, 0f,

Animation.RELATIVE_TO_PARENT, 0f

);

translateAnimation.setDuration(duration);

getCurrentView().startAnimation(translateAnimation);

}

currentTab = index;

}

}

对应的布局文件activity_board.xml

使用BoardTabHost,装载一个竖直的LinearLayout;上面是TabWidget,装载标签;后面是fragment的FrameLayout

可以看到这里有3个fragment,待会在activity中也设置3个标签

android:id="@android:id/tabhost"

xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context="com.rust.tabhostdemo.BoardActivity">

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical">

android:id="@android:id/tabs"

android:layout_width="match_parent"

android:layout_height="wrap_content"/>

android:id="@android:id/tabcontent"

android:layout_width="match_parent"

android:layout_height="match_parent">

android:id="@+id/fragment_tab1"

android:name="com.rust.tabhostdemo.TabFragment1"

android:layout_width="match_parent"

android:layout_height="match_parent"/>

android:id="@+id/fragment_tab2"

android:name="com.rust.tabhostdemo.TabFragment2"

android:layout_width="match_parent"

android:layout_height="match_parent"/>

android:id="@+id/fragment_tab3"

android:name="com.rust.tabhostdemo.TabFragment3"

android:layout_width="match_parent"

android:layout_height="match_parent"/>

值得一提的是,这里的id要用android指定的id;

比如@android:id/tabhost,@android:id/tabcontent,@android:id/tabs;否则系统找不到对应控件而报错

BoardActivity.java中设置了3个标签页,并指定了标签对应的fragment

import android.support.v4.app.FragmentActivity;

import android.os.Bundle;

public class BoardActivity extends FragmentActivity {

public static final String TAB1 = "tab1";

public static final String TAB2 = "tab2";

public static final String TAB3 = "tab3";

public static BoardTabHost boardTabHost;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_board);

boardTabHost = (BoardTabHost) findViewById(android.R.id.tabhost);

boardTabHost.setup();

boardTabHost.addTab(boardTabHost.newTabSpec(TAB1).setIndicator(getString(R.string.tab1_name))

.setContent(R.id.fragment_tab1));

boardTabHost.addTab(boardTabHost.newTabSpec(TAB2).setIndicator(getString(R.string.tab2_name))

.setContent(R.id.fragment_tab2));

boardTabHost.addTab(boardTabHost.newTabSpec(TAB3).setIndicator(getString(R.string.tab3_name))

.setContent(R.id.fragment_tab3));

boardTabHost.setCurrentTab(0);

}

}

主要文件目录:

── layout

├── activity_board.xml

├── fragment_tab1.xml

├── fragment_tab2.xml

└── fragment_tab3.xml

── tabhostdemo

├── BoardActivity.java

├── BoardTabHost.java

├── TabFragment1.java

├── TabFragment2.java

└── TabFragment3.java

以上所述是小编给大家介绍的Android中使用TabHost 与 Fragment 制作页面切换效果的相关内容,希望对大家有所帮助!

android tabhost 动画,Android中使用TabHost 与 Fragment 制作页面切换效果相关推荐

  1. android fragment界面滑动切换效果,Android App中使用ViewPager+Fragment实现滑动切换效果...

    在android应用中,多屏滑动是一种很常见的风格,没有采用viewpager的代码实现会很长,如果采用ViewPager,代码就会短很多,但是使用ViewPager也有弊端:需要导入android- ...

  2. js html页面切换效果,jQuery实现切换页面过渡动画效果

    这篇文章主要介绍了关于jQuery实现切换页面过渡动画效果,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下 这是一款效果非常酷的jQuery和CSS3通过AJAX调用切换页面过渡动画特效 ...

  3. android擦动画,Android中动画的使用

    首先在res目录下建立anim目录,添加3个xml文件:load_animation_1, load_animation_2, load_animation_3,文件内容分别如下: load_anim ...

  4. android jason动画,Android 动画之Lottie动画使用

    Android 动画之Lottie动画使用 一:简介 Lottie是Airbnb开源的一套跨平台的完整解决方案,设计师只需要使用After Effects(简称AE)设计动画之后,使用Lottic提供 ...

  5. android弹球动画,Android动画之自定义Evaluator实现弹球效果

    前言 今天给大家带来的是自定义Evaluator实现弹球效果,我们先给大家来个效果图. 下面我们介绍具体代码流程 1. 自定义Point类 public class Point { private i ...

  6. android decorview动画,Android窗口机制(二)Window,PhoneWindow,DecorView,setContentView源码理解...

    Android窗口机制系列 前篇文章中出现了PhoneWindow,DecorView这些类,如果是第一次见过的话,肯定会觉得陌生.这篇文章主要跟大家讲解Window,PhoneWindow,Deco ...

  7. android 减速动画,Android View Animation

    概述 可译为视图动画,分为 缩放动画 平移动画 渐变动画 旋转动画 Android系统中定义了一个抽象类Animation来定义这种视图动画,它的具体子类如下表: 动画名称 对应的子类 xml中标签 ...

  8. android 底部动画,Android实现360手机助手底部的动画菜单

    首先来看下我们实现的效果和360效果的对比: 360手机助手效果演示 本库实现的效果(Icon来自360手机助手,侵删) xml布局文件 注:为了美观,讲每个Button的高度以及固定,设置wrap_ ...

  9. android 4 动画,[Android]开发App,你得知道这些4——动画

    0.前言 上一篇文章中,我们讲解了Android的触摸事件 有兴趣的可以去看一看 准备工作 在读本文前,你最好有以下准备: (1)安装Android Stuido(以下简称AS) (2)有一定的Jav ...

最新文章

  1. iOS - UIButton 开发总结
  2. PE学习(六)第六章 栈与重定位表 实例栈溢出、模拟加载器加载DLL、遍历重定位表
  3. TCP往返时延的估计和超时
  4. 笔记之_java整理JavaScript
  5. ansible命令应用示例
  6. root目录空间不够的问题
  7. Nginx 安装与启动
  8. 如果张东升是个程序员,你还有机会吗?
  9. 一套完整的Selenium自动化测试框架设计实战,这次38K, 妥了
  10. MySQL数据库搜题_智慧树_MySQL数据库设计与应用_搜题公众号
  11. 【Elasticsearch】Kibana优化过程(Optimize)过长或无法结束的解决方案
  12. 行内元素(HTML、CSS)
  13. Linux tmux 使用指南
  14. VS code gopls requires a module at the root of your workspace
  15. linux服务器端口的状态,Linux查看端口状态及关闭端口方法
  16. PWM、PPM、SBUS、DSM2这四种协议到底是什么鬼?
  17. AndroidTV获取U盘路径
  18. mv背景html代码,深入浅出MV*框架源码(三):Moon的html-code实现
  19. 如何使用 JavaScript 构建计算器应用程序
  20. caffe中HDF5层及数据生成

热门文章

  1. ACM-ICPC2018南京赛区 Mediocre String Problem
  2. Windows 下的免费 SSH 客户端工具
  3. 自动驾驶“驶入”快车道,黑芝麻智能引领国产大算力芯片量产
  4. 华为天才少年打造无人驾驶自行车
  5. java读取properties文件
  6. 用C语言编写MBTI性格测试程序
  7. 亚马逊买家账号注册,怎么批量操作?
  8. [Halcon识别] OCR字符识别
  9. 详解如何使用HiPush的API推送消息到微信|微信消息推送开发文档
  10. scribe php,日志管理(4) 用scribe收集nginx和php日志