是否可以在Honeycomb ActionBar的MenuItem中显示Text右侧的图标?
当我使用 ActionBar 时,我可以向 MenuItems 添加图标,就像在早期 Android 版本中一样。但图标始终位于文本的左侧。我可以将图标放在右侧吗?下面的例子:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/somebutton"
android:title="mylabel"
android:icon="@drawable/icon"
android:showAsAction="ifRoom|withText"/>
</menu>
When i use the ActionBar i can add icons to the MenuItems as i would in earlier Android Versions. But the icons are always on the left side of the text. Can i place the icon on the right side somehow? Example below:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/somebutton"
android:title="mylabel"
android:icon="@drawable/icon"
android:showAsAction="ifRoom|withText"/>
</menu>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用操作视图并安排您自己的自定义演示和项目处理,但在这种情况下确实不建议这样做。蜂窝样式指南是将图标放置在左侧。
You can use an action view and arrange your own custom presentation and handling of the item, but that's really not recommended in this case. Honeycomb style guidelines are to place the icons on the left.