在android中实现可滚动的选项卡

时间:2015-07-28 13:45:36

标签: android android-viewpager android-tabs

我想在我的应用中实现可滚动的标签。

我有一些内容,比如图像,一些文本视图用于显示页面的信息,以及一个显示底部选项卡的viewpager。

我对viewpager的问题是,每当我滑动或点击任何标签页时,内容都会在同一个地方加载。

我想要的是:

  1. 应禁用选项卡的滑动,并且只有click事件才能在按钮上工作。
  2. 每当我点击任何标签时,该片段都应该加载完整 页面,就像活动一样。
  3. 我怎样才能做到这一点?

    我的布局xml是:

    <LinearLayout android:orientation="vertical"
        android:layout_width="match_parent" android:layout_height="match_parent">
        <RelativeLayout android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <com.android.volley.toolbox.NetworkImageView
                android:layout_width="match_parent" android:layout_height="200dp">
            </com.android.volley.toolbox.NetworkImageView>
        </RelativeLayout>
    </LinearLayout>
    

0 个答案:

没有答案