本文介绍了纵向模式下带有图标和文本的 ActionBar的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
无论我尝试什么,我似乎都无法让图像和文本在操作栏中的菜单项上以纵向模式工作.我什至试图强制 android 纵向
I can't seem to get an image and text to work in portrait mode on menu items in the action bar no matter what I try. I even tried to force android portrait orientation
我的 XML:
<item android:id="@+id/menu_save"
android:icon="@drawable/content"
android:orderInCategory="100"
android:title="New Group"
android:showAsAction="withText|always" />
有人发现了吗?
推荐答案
来自原生ActionBar的config.xml文件:
From the config.xml file of the native ActionBar:
值:
<bool name="config_allowActionMenuItemTextWithIcon">false</bool>
值-480dp:
<bool name="config_allowActionMenuItemTextWithIcon">true</bool>
回答您的问题:
不,您不能这样做,如果设备宽度小于 480dp.(除非你想用修改过的框架创建自定义 rom)
No you can't do that, if the devices width is smaller than 480dp. (Unless you want to create a custom rom with a modded framework)
这篇关于纵向模式下带有图标和文本的 ActionBar的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!