1

我需要为平板电脑创建一个 ViewPager,在左侧会有导航按钮供用户选择。例如。

左侧导航将有 4 个图像按钮,每个项目将用户带到不同的教程。每个图像按钮都会加载一个 ViewPager。

如果用户选择第 1 项,页面右侧将为教程 #1 加载 ViewPager,但左侧的导航将保留,因此当用户在页面上滑动时,导航将始终可见,因此他们可以导航到不同的页面教程。所有 ImageButton 项的行为都是相同的。

我已经搜索了示例,但没有看到像我所描述的那样。如果不是这种设计的可能替代方案是什么?

更新,包括 xml 布局。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <include
        android:id="@+id/headerbar"
        layout="@layout/header" />

    <LinearLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <include layout="@layout/left_nav" />

        <android.support.v4.view.ViewPager
            android:id="@+id/homeScreenPager"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1" />

        <com.viewpagerindicator.CirclePageIndicator
            android:id="@+id/indicator"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/navbar_bg"
            android:padding="10dip" />

    </LinearLayout>

</LinearLayout>
4

1 回答 1

1

我已经搜索了示例,但没有看到像我所描述的那样。

使用水平LinearLayout. 有两个孩子:

  • LinearLayout您的“4个图像按钮”的垂直
  • 一种ViewPager

单击按钮时,在ViewPager.

于 2012-12-23T18:54:05.663 回答