0

想要通过使用触摸事件拖动页面来更改活动。我用过 Flipper,但是通过使用 Flipper 动画会自动执行,但我想用手指或鼠标拖动屏幕

4

1 回答 1

0

为此,我找到了一门非常棒的课程,这对我来说非常棒。这个不能真正切换活动,但您可以切换多个“屏幕”或“表单”。

我在这里的那个问题中没有找到它的库(重要的是Java文件“DragableSpace.java”:

安卓主屏幕

你看不到如何在你的布局中使用它,所以这是我的例子:

<com.matthieu.launcher.DragableSpace xmlns:app="http://schemas.android.com/apk/res/com.matthieu.launcher"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/space"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<include android:id="@+id/left"  layout="@layout/artists" />
<include android:id="@+id/center"  layout="@layout/releases" />
<include android:id="@+id/right"  layout="@layout/labels" />

</com.matthieu.launcher.DragableSpace>

您可以包含任意数量的“屏幕”,这些“屏幕”基本上只是指向其他布局文件的链接。您可以通过拖动来切换这些屏幕(如主屏幕)。

于 2011-03-04T06:57:42.410 回答