Android ViewFlipper ZOrder

发布于 2024-10-14 14:37:21 字数 115 浏览 6 评论 0原文

我正在尝试使用视图翻转器来制作两个视图之间的过渡动​​画。默认情况下,ViewFlipper 似乎将 Out 动画按 Z 顺序放置在 In 动画之上。有没有办法让传入的动画显示在传出的动画之上?

谢谢

I am attempting to use a view flipper to animate the transition between 2 views. It seems that, by default, the ViewFlipper places the Out animation above the In animation in Z order. Is there a way to get the incoming animation to display over the outgoing animation?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瀞厅☆埖开 2024-10-21 14:37:21

您可以在 Android 启动器中找到此功能。由于 Android 是开源的,您只需复制并使用它即可。

采用名为 DragableSpace 的代码:http://pastebin.com/CgK8TCQS。在您的活动中,您可以调用:

setContentView(R.layout.main);

with:

<?xml version="1.0" encoding="utf-8"?>
<de.android.projects.DragableSpace
    xmlns:app="http://schemas.android.com/apk/res/de.android.projects"
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/space"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    app:default_screen="1">
    <include android:id="@+id/left" layout="@layout/left_screen" />
    <include android:id="@+id/center" layout="@layout/initial_screen" />
    <include android:id="@+id/right" layout="@layout/right_screen" />
</de.android.projects.DragableSpace>

正如您所看到的,您可以仅使用 xml 为应用程序定义主屏幕;)

定义每个视图(初始视图、右视图和左视图)
像这样:

<LinearLayout android:id="@+id/center"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:background="@color/orange">
    <Button android:text="Initial Screen" android:id="@+id/Button2"
        android:layout_width="fill_parent" android:layout_height="wrap_content"
        android:padding="10dp" android:layout_margin="10dp">
    </Button>
</LinearLayout>

有关更多信息,请查看此问题:开发 Android 主屏幕

You can find this feature in the Android Launcher. Since Android is open source you can just copy and work with it.

Take this code called DragableSpace: http://pastebin.com/CgK8TCQS. In your activity you call:

setContentView(R.layout.main);

with:

<?xml version="1.0" encoding="utf-8"?>
<de.android.projects.DragableSpace
    xmlns:app="http://schemas.android.com/apk/res/de.android.projects"
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/space"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    app:default_screen="1">
    <include android:id="@+id/left" layout="@layout/left_screen" />
    <include android:id="@+id/center" layout="@layout/initial_screen" />
    <include android:id="@+id/right" layout="@layout/right_screen" />
</de.android.projects.DragableSpace>

Like you can see you can define a homescreen for your application using just xml ;)

Define each view (initial, right and left)
like this:

<LinearLayout android:id="@+id/center"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:background="@color/orange">
    <Button android:text="Initial Screen" android:id="@+id/Button2"
        android:layout_width="fill_parent" android:layout_height="wrap_content"
        android:padding="10dp" android:layout_margin="10dp">
    </Button>
</LinearLayout>

For more information check out this question: Developing an Android Homescreen

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文