删除工具栏布局中的空白

时间:2018-09-12 19:49:21

标签: android android-toolbar android-tablayout

export PATH="$PATH:/usr/local/bin/"
export PATH="/usr/local/git/bin:/sw/bin/:/usr/local/bin:/usr/local/:/usr/local/

所以我遇到了问题,在工具栏部分有两个选项卡,但是我不知道为什么我不能从左侧启动选项卡,我有一些间距并且不知道如何删除它。

我试图将所有填充都设置为“ 0”或“ false”,找不到任何内容

enter image description here

1 个答案:

答案 0 :(得分:0)

我不建议这样做,但是,您的问题的答案是将ToolbarTabLayout都放置在LinearLayout内,如下所示:

<android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <android.support.design.widget.TabLayout
                android:id="@+id/tabs"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:background="@color/red" />

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:background="@color/orange" />
        </LinearLayout>

</android.support.design.widget.AppBarLayout>

输出:

enter image description here