在我的ActionBar中,我只有一个选项菜单项,它只有图标而没有文字。
上下文菜单图标和徽标已完全对齐(中心垂直),但素材电视图标(24d - 96x96)看起来已折叠。我无法弄清楚如何使其成为上下文菜单图标高度的精确高度。这是我的AppBarLayout文件的一部分:
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay">
<ImageView
android:id="@+id/imgToolbarLogo"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:src="@drawable/dunya_logo_white" />
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
菜单项为:
<item
android:id="@+id/action_watch_live"
android:icon="@drawable/ic_tv_white"
android:title=""
android:orderInCategory="1"
app:showAsAction="always"/>
请帮助我如何集中对齐此素材图标,如左侧的“上下文菜单”图标。
答案 0 :(得分:4)
我认为您的图像可绘制文件夹不正确,请尝试在正确的Drawable文件夹中插入正确的图像尺寸。您可以参考以下链接
http://iconhandbook.co.uk/reference/chart/android/
What is the recommended ActionBar icon size in Material Design (Android API 21+)?