屏幕切换指的是在同一个Activity内屏幕见的切换,最长见的情况就是在一个FrameLayout内有多个页面,比如一个系统设置页面;一个个性化设置页面。
通过查看OPhone API文档可以发现,有个android.widget.ViewAnimator类继承至FrameLayout,ViewAnimator类的作用是为FrameLayout里面的View切换提供动画效果。该类有如下几个和动画相关的函数:
l setInAnimation:设置View进入屏幕时候使用的动画,该函数有两个版本,一个接受单个参数,类型为android.view.animation.Animation;一个接受两个参数,类型为Context和int,分别为Context对象和定义Animation的resourceID。
- setOutAnimation: 设置View退出屏幕时候使用的动画,参数setInAnimation函数一样。
- showNext: 调用该函数来显示FrameLayout里面的下一个View。
- showPrevious: 调用该函数来显示FrameLayout里面的上一个View。
一般不直接使用ViewAnimator而是使用它的两个子类ViewFlipper和ViewSwitcher。ViewFlipper可以用来指定FrameLayout内多个View之间的切换效果,可以一次指定也可以每次切换的时候都指定单独的效果。该类额外提供了如下几个函数:
- isFlipping: 用来判断View切换是否正在进行
- setFilpInterval:设置View之间切换的时间间隔
- startFlipping:使用上面设置的时间间隔来开始切换所有的View,切换会循环进行
- stopFlipping: 停止View切换
ViewSwitcher 顾名思义Switcher特指在两个View之间切换。可以通过该类指定一个ViewSwitcher.ViewFactory 工程类来创建这两个View。该类也具有两个子类ImageSwitcher、TextSwitcher分别用于图片和文本切换。
在教程中通过示例介绍ViewFlipper 的使用,其他的使用方式是类似的。详细信息可以参考文档:
ViewFlipper示例
记住,ViewFlipper是继承至FrameLayout的,所以它是一个Layout里面可以放置多个View。在示例中定义一个ViewFlipper,里面包含三个ViewGroup作为示例的三个屏幕,每个ViewGroup中包含一个按钮和一张图片,点击按钮则显示下一个屏幕。代码如下(res\layout\main.xml):
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
-
xmlns:android="http://schemas.android.com/apk/res/android"
-
android:orientation="vertical"
-
android:layout_width="fill_parent"
-
android:layout_height="fill_parent">
-
<ViewFlipper android:id="@+id/details"
-
android:layout_width="fill_parent"
-
android:layout_height="fill_parent"
-
android:persistentDrawingCache="animation"
-
android:flipInterval="1000"
-
android:inAnimation="@anim/push_left_in"
-
android:outAnimation="@anim/push_left_out"
- >
- <LinearLayout
-
android:orientation="vertical"
-
android:layout_width="fill_parent"
-
android:layout_height="fill_parent">
- <Button
-
android:text="Next"
-
android:id="@+id/Button_next1"
-
android:layout_width="fill_parent"
-
android:layout_height="wrap_content">
- </Button>
- <ImageView
-
android:id="@+id/image1"
-
android:src="@drawable/dell1"
-
android:layout_width="fill_parent"
-
android:layout_height="wrap_content">
- </ImageView>
- </LinearLayout>
-
- <LinearLayout
-
android:orientation="vertical"
-
android:layout_width="fill_parent"
-
android:layout_height="fill_parent">
- <Button
-
android:text="Next"
-
android:id="@+id/Button_next2"
-
android:layout_width="fill_parent"
-
android:layout_height="wrap_content">
- </Button>
- <ImageView
-
android:id="@+id/image2"
-
android:src="@drawable/lg"
-
android:layout_width="fill_parent"
-
android:layout_height="wrap_content">
- </ImageView>
- </LinearLayout>
-
- <LinearLayout
-
android:orientation="vertical"
-
android:layout_width="fill_parent"
-
android:layout_height="fill_parent">
- <Button
-
android:text="Next"
-
android:id="@+id/Button_next3"
-
android:layout_width="fill_parent"
-
android:layout_height="wrap_content">
- </Button>
- <ImageView
-
android:id="@+id/image3"
-
android:src="@drawable/lenovo"
-
android:layout_width="fill_parent"
-
android:layout_height="wrap_content">
- </ImageView>
- </LinearLayout>
-
- </ViewFlipper>
-
- </LinearLayout>
很简单,在Layout定义中指定动画的相关属性就可以了,通过persistentDrawingCache指定缓存策略;flipInterval指定每个View动画之间的时间间隔;inAnimation和outAnimation分别指定View进出使用的动画效果。动画效果定义如下:
- res\anim\push_left_in.xml
-
<?xml version="1.0" encoding="utf-8"?>
-
<set xmlns:android="http://schemas.android.com/apk/res/android">
- <translate
-
android:fromXDelta="100%p"
-
android:toXDelta="0"
-
android:duration="500"/>
- <alpha
-
android:fromAlpha="0.0"
-
android:toAlpha="1.0"
-
android:duration="500" />
- margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 38px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 10px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: solid; bor
分享到:
相关推荐
为了在多个界面之间切换,我们可以设置按钮或者菜单项,当用户点击时触发相应的事件。例如,添加两个按钮,分别用于切换到界面1和界面2。 ```python from PyQt5.QtWidgets import QPushButton def add_buttons...
在Qt编程中,当需要在一个界面上实现多个窗口或页面之间的切换时,`QStackedWidget`是一个非常实用的工具。`QStackedWidget`是Qt库中的一个容器类,它允许我们将多个窗口小部件(widgets)堆叠在一起,并在它们之间...
通过这个例子,我们可以看到如何使用`QStackedLayout`来构建一个简单的界面切换应用,其中包含两个页面,并且有一个按钮用于在它们之间切换。 总结来说,`QStackedLayout`是Qt中实现多界面切换的重要工具,它提供了...
在"swing多个布局切换实例"中,我们主要关注CardLayout,它是用于在面板上切换多个视图的理想选择。 CardLayout允许你在同一空间内显示多个组件,每次只显示一个。你可以通过调用特定的方法来改变显示的组件,就像...
在Android应用开发中,Fragment是UI组件的一种,它允许开发者在一个Activity中添加多个"子界面",从而实现更复杂的布局和交互。Fragment的设计初衷是为了更好地适应不同尺寸的屏幕,如手机和平板,使得UI能够在不同...
当需要在同一个Activity中展示多个界面时,Fragment的切换就显得尤为重要。本篇文章将深入探讨如何实现多个Fragment之间的切换,以及与之相关的Activity管理。 一、Fragment的基本概念 Fragment是一个可以包含用户...
### Android界面切换与网络通信详解 #### 一、Android界面切换方法 在Android开发中,界面切换是一项基本但非常重要的技能。它可以帮助开发者构建出更加动态且交互丰富的应用。根据提供的部分信息,我们可以将...
在Android应用开发中,"ViewPager"是一个非常重要的组件,它允许用户通过左右滑动来浏览多个页面,这种设计常用于实现动态的欢迎界面或者引导页。"ViewPager"结合适配器(如`FragmentPagerAdapter`或`...
在Android应用开发中,创建一个带有多个选项卡切换的效果是一个常见的需求,这通常涉及到用户界面(UI)的设计和用户体验(UX)的优化。本篇文章将详细介绍如何在Android中实现这样的功能,以创建一个包含多个选项卡...
QT库提供了一种强大的机制,使得我们可以轻松地创建和管理多个界面,并在它们之间平滑过渡。以下是关于这一主题的详细解释。 1. **QApplication和QWidget**: 在QT中,`QApplication`类是整个应用的基础,负责事件...
在Android应用开发中,`TabHost` 是一个非常重要的组件,它用于实现多标签页的界面切换,类似于微信、QQ等应用的主界面布局。在本项目中,我们将深入探讨如何利用 `TabHost` 实现类似微信的界面切换效果。 首先,`...
在Android应用开发中,Fragment是Android SDK提供的一种组件,它允许开发者在Activity中添加多个可交互的屏幕区域。Fragment不仅可以独立存在于Activity中,还可以在不同的Activity之间进行切换,从而实现复杂的用户...
对于简单的界面切换,可以使用UINavigationController来管理多个UIViewController的堆叠。当你调用`pushViewController:animated:`时,新的视图控制器会被推入栈顶并显示;而调用`popViewControllerAnimated:`则会...
在Android应用开发中,Tab Layout是一种常见的用户界面组件,它允许用户通过标签在不同的内容视图之间切换。在本教程中,我们将深入探讨如何在不使用Fragment的情况下,使用多个Activity来实现这一功能。这种方式...
Fragment代表应用界面的一部分,可以在同一个Activity中进行添加、移除和替换,适合在小屏幕设备上管理多个视图。Activity则代表应用的一个完整屏幕。 在底部的多个Button中,我们可以为每个Button分配一个对应的...
总之,iOS应用的横竖屏切换涉及到了系统级别的配置、UIViewController的代理方法、界面布局策略等多个方面。掌握这些知识点,不仅可以提高应用的用户体验,还能使你在面对复杂界面需求时游刃有余。
在Android开发中,UI界面的设计和交互是用户体验的关键部分,而动态切换主题是提升用户个性化体验的一个重要功能。本文将详细解析如何实现Android应用中切换主题的代码。 首先,我们需要理解Android中的主题(Theme...
在本文中,我们将深入探讨MFC(Microsoft Foundation Classes)中的单文档应用程序(Single Document Interface, SDI)如何实现FormView界面切换以及Dialog布局。MFC是微软提供的一个C++类库,它为Windows应用程序...
它允许开发者将页面划分为多个区域,如north(北)、south(南)、east(东)、west(西)和center(中心)。这些区域可以独立调整大小,提供了一种动态调整页面结构的方式。此外,jQuery UI Layout还支持滚动条的...