去除汉堡包和标题之间的填充

时间:2017-07-29 11:10:20

标签: android android-toolbar

我想在汉堡包和&amp ;;之间移除ActionBar中的左边距。标题,而不必使用工具栏。我试过工具栏,但我遇到了一些限制,我认为是缺点。 我是Android编程的新手,我很高兴使用默认的ActionBar来解决这个问题。

enter image description here

1 个答案:

答案 0 :(得分:2)

尝试使用工具栏

下面的属性
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
app:contentInsetStartWithNavigation="0dp"

现在为此设置toolbar

<android.support.design.widget.CoordinatorLayout  xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 android:layout_width="match_parent"
 android:layout_height="match_parent">

 <android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/AppTheme.PopupOverlay"
        app:contentInsetLeft="0dp"
        app:contentInsetStart="0dp"
        app:contentInsetStartWithNavigation="0dp" />

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

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

    // add here all your controlls
</LinearLayout>

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

现在在此类活动中设置工具栏

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

如果有任何疑问,请询问我