本文介绍了如何在Android工具栏中填充右侧的汉堡包按钮?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在Android工具栏内从左到右填充一个汉堡包按钮从1到2?
How can I padding left to right a hamburger button inside Android's Toolbar from 1 to 2?
推荐答案
对于AppBarLayout和工具栏,您可以使用:
For AppBarLayout and Toolbar you can use:
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
android:layoutDirection="rtl">
<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" />
</android.support.design.widget.AppBarLayout>
这篇关于如何在Android工具栏中填充右侧的汉堡包按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!