本文介绍了Android的菜单图标与标题:标题不显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
下面是我的XML
<?xml version="1.0" encoding="UTF-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/refresh" android:title="Home"
android:icon="@drawable/menu_home" />
<item android:id="@+id/search" android:title="Search"
android:icon="@drawable/menu_search" />
<item android:id="@+id/help" android:title="Help" android:icon="@drawable/menu_help" />
</menu>
是越来越显示图标,但标题却没有。请指教。
Icon is getting displayed but title doesn't. Please advise.
推荐答案
我会后这是一个答案,然后...
I'll post this as an answer then...
菜单pixes的大小可以是过大(如72x72不等#)。请确保您使用适当的大小图标当前的显示。
The size of menu pixes can be too large (such as 72x72). Make sure you use the proper size icons for your current display.
这篇关于Android的菜单图标与标题:标题不显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!