如何在工具栏上添加在抽屉和后退箭头图标后面的imageview?该imageview应该与工具栏高度匹配,并且左侧没有任何边距或填充。我正在尝试实现这一目标,目前只有我想制作出自定义工具栏的解决方案
示例:
答案 0 :(得分:0)
您可以尝试以下方法:
<RelativeLayout
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:theme="@style/ActionBarThemeOverlay"
app:popupTheme="@style/ActionBarPopupThemeOverlay"
android:elevation="4dp"
android:background="@color/white">
<ImageView
android:layout_width="60dp"
android:layout_height="?attr/actionBarSize"
android:src="@drawable/yourImage"/>
</RelativeLayout>
答案 1 :(得分:0)
在布局中创建appbar_layout_xml添加以下代码
<android.support.v7.widget.Toolbar
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="wrap_content"
android:background="@drawable/my_img"
app:titleTextColor="@color/colorWhite"
android:theme="@style/ThemeOverlay.AppCompat.Light"
>
</android.support.v7.widget.Toolbar>
,并且在您的activity_xml中包含appbar_layout_xml布局 样式中将主题保留为NoActionBar