Android标题显示的ActionView

时间:2014-03-28 10:33:02

标签: android android-actionbar actionview

所以我在ActionBar中为MenuItem设置了自定义ActionView,太棒了! 现在,如何让menuItem显示它的标题(以xml设置)?

这很重要,因为我希望用户阅读该按钮正在做什么 customView用作常规menuItem,并且始终展开。

我尝试将ContentDescription设置为包含相同标题的自定义布局,但到目前为止没有运气 谢谢!

1 个答案:

答案 0 :(得分:1)

保留内容说明,但在自定义布局的构造函数中,设置Roman Nurik's CheatSheet。当您使用自定义MenuItem时,由您决定是否可以访问它。

public ActionViewExample(Context context, AttributeSet attrs) {
    super(context, attrs);
    // Ensure the MenuItem is accessible
    CheatSheet.setup(this);
}