我正在开发一个Android应用程序,其中要求是放置三张图片,一张放在一起。当我向左滑动时,图像应向左移动,如果我向右滑动,图像应向右移动,如parallex view
。以下是我的xml
页面:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.layerapp.layerapp.MainActivity">
<ImageView
android:id="@+id/forest"
android:layout_width="1000dp"
android:layout_height="match_parent"
android:src="@drawable/forest"
android:scaleType="fitXY"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
</LinearLayout>
需要有关java逻辑的帮助。任何人都可以给我一些想法。