使用Android SDK 23在头像和后退按钮之间填充是可以的。
但是在增加SDK到24填充之后增加了。我不确定这是新的默认填充,或者我只需要为新SDK调整我的代码。同样的问题对其他工具栏元素有效。
我的工具栏布局
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
style="@style/Toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/color_primary"
app:contentInsetEnd="0dp"
>
<include layout="@layout/partial_toolbar"/>
</android.support.v7.widget.Toolbar>
partial_toolbar.xml
<merge
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
>
<LinearLayout
android:id="@+id/toolbar_content_wrapper"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal"
>
<ImageView
android:id="@+id/toolbar_app_logo"
android:layout_width="4dp"
android:layout_height="4dp"
android:layout_gravity="center_vertical"
android:layout_marginRight="1dp"
android:src="@drawable/ic_white_24dp"
android:tint="@color/toolbar_foreground"
android:visibility="gone"
/>
<com.example.ui.extensions.GroupAvatarView
android:id="@+id/toolbar_group_logo"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="center_vertical"
android:layout_marginRight="10dp"
android:gravity="center"
/>
</LinearLayout>
<Button
android:id="@+id/right_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right|center_vertical"
android:background="?android:selectableItemBackground"
android:textColor="@color/toolbar_foreground"
android:visibility="gone"
/>
</merge>
答案 0 :(得分:1)
在您的java代码
中添加它toolbar.setContentInsetStartWithNavigation(0);