我正在尝试使用视图鳍状肢来动画两个视图之间的过渡。看来,默认情况下,ViewFlipper将Out动画按Z顺序放在In动画上方。有没有办法让传入的动画显示在传出的动画上?
由于
答案 0 :(得分:0)
您可以在Android Launcher中找到此功能。由于Android是开源的,您可以复制并使用它。
使用名为 DragableSpace 的代码:http://pastebin.com/CgK8TCQS。在您的活动中,您致电:
setContentView(R.layout.main);
使用:
<?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>
有关详情,请查看此问题:Developing an Android Homescreen