SlidingTabLayout覆盖第一个视图

时间:2015-08-25 01:49:13

标签: android

我的SlidingTabLayout正在覆盖片段的第一个视图

图片:

我想要的是什么:

http://i.stack.imgur.com/w4pcd.png

我得到了什么:

http://i.stack.imgur.com/WD4dP.png

HelpActivity:

<MyTab.Tools.SlidingTabLayout
    android:id="@+id/tabs"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:elevation="2dp"
    android:fitsSystemWindows="true"
    android:background="@android:color/holo_green_dark"/>

<android.support.v4.view.ViewPager
    android:id="@+id/pager"

    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:layout_weight="1"
    ></android.support.v4.view.ViewPager>

我的FragmentXML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/help1_layout"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    <LinearLayout
        android:layout_width="fill_parent"
        android:orientation="vertical"
        android:layout_height="fill_parent">


        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

       <Button
           android:layout_width="wrap_content"
           android:layout_height="wrap_content" />

        <ImageView
            android:layout_width="match_parent"
            android:id="@+id/help1_tela"
            android:layout_height="match_parent" />

    </LinearLayout>
    </ScrollView>
</RelativeLayout>

并且Tab和Pager以一般方式启动,而不是修改,只需从谷歌SlidingTabLayout类复制并粘贴并初始化寻呼机,只需此=(

0 个答案:

没有答案