我正在开发一个 android 应用程序,但遇到了一些麻烦,我的应用程序由三个垂直片段( Top/Body/Bottom )组成。
我需要在正文片段中实现一个 viewpager(让你在页面之间滚动的东西),我不知道我该怎么做,这是我的 ActivityMain.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:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:orientation="vertical">
<fragment
android:layout_width="match_parent"
android:layout_height="55dp"
android:id="@+id/top"
android:layout_weight="0"
android:name="trussde.test.fragmenttest3.Top"
tools:layout="@layout/topfragment">
</fragment>
<fragment
android:layout_width="match_parent"
android:layout_height="505dp"
android:id="@+id/body"
android:layout_weight="0"
android:name="trussde.test.fragmenttest3.Body"
tools:layout="@layout/bodyfragment">
</fragment>
<fragment
android:name="trussde.test.fragmenttest3.Bottom"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:id="@+id/tutlist_fragment"
android:layout_weight="0"
tools:layout="@layout/bottomfragment">
</fragment>
</LinearLayout>
目前这里只有三个碎片,我需要让身体可以移动。你对我该怎么做有什么建议吗?
谢谢