这是在我的项目工作一个月(暑期学校)之后发生的。我刚刚回到它并注意到我更新Android Studio后工具栏上的这个差距比正常差距大。我无法在SO上找到有关此问题的任何问题/解决方案。如果有人能提供帮助,那将非常感激。
我正在通过这样做加载汉堡包图标(每一行都正确放置在应用程序中,在类声明,onCreate()等中。为了简单起见,我把它放在这里。):
ActionBarDrawerToggle mDrawerToggle;
mDrawerToggle = new ActionBarDrawerToggle(getActivity(), dl, toolbar, R.string.nav_open, R.string.nav_closed)
mDrawerToggle.syncState();
以下是我的工具栏的xml代码:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:minHeight="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"
app:title="Test Title">
</android.support.v7.widget.Toolbar>
我尝试使用各种contentInset
xml属性,但没有影响菜单图标后的间距。
编辑:这个link显示了我曾经拥有的东西(在页面中间找到)。如果您注意到标题和汉堡图标之间的间距,则间距不会像此处所示的图片那样宽。它好像间距加倍了。