export PATH="$PATH:/usr/local/bin/"
export PATH="/usr/local/git/bin:/sw/bin/:/usr/local/bin:/usr/local/:/usr/local/
所以我遇到了问题,在工具栏部分有两个选项卡,但是我不知道为什么我不能从左侧启动选项卡,我有一些间距并且不知道如何删除它。
我试图将所有填充都设置为“ 0”或“ false”,找不到任何内容
答案 0 :(得分:0)
我不建议这样做,但是,您的问题的答案是将Toolbar
和TabLayout
都放置在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>
输出: