我的工具欄如何從工具欄中的標題中刪除填充?
谷歌工具欄播放
如何刪除不必要的填充?
我的工具欄片段 我的代碼片段裏面:
public void setUpToolbar(Toolbar toolbar, String title, @DrawableRes int resId) {
toolbar.setTitle(title);
((AppCompatActivity) getActivity()).setSupportActionBar(toolbar);
ActionBar ab = ((AppCompatActivity) getActivity()).getSupportActionBar();
ab.setHomeAsUpIndicator(resId);
ab.setDisplayHomeAsUpEnabled(true);
}
我的XML工具欄:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/AppTheme.PopupOverlay" />
http://stackoverflow.com/a/38302389/1462770 – Amir
app:contentInsetStartWithNavigation =「0dp」 – Amir