在操作栏,如Gmail号码(Number in Action Bar like Gmail)

2019-06-24 19:00发布

我想在我的操作栏的右上角显示一个数据计数。

如果我不会使用分流作用吧,我只想创建在酒吧一个TextView,但它目前不可能有在顶部操作栏项目时,你已经分手。

为了澄清,我的意思是这样的:

难道谷歌使用不同的操作栏的实现还是有办法做到这一点? 我想,我记得曾读到它,但我不能找到它是怎么被调用。

Answer 1:

使用自定义视图,您的微调和文本视图顶部AB并启用android:uiOptions="splitActionBarWhenNarrow"在舱单申报为您的活动

//set the actionbar to use the custom view (can also be done with a style)
getActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);

//set the custom view to use
getActionBar().setCustomView(R.layout.custom_ab);

custom_ab.xml与您的ImageView,微调和TextView的用于计数的布局。



Answer 2:

你应该停止使用动作条或喜欢和更新应用使用工具栏具有简单和容易得多界面,你能想到的一切。 对于阅读关于它使用[Android的博客] [1]

[1]: http://android-developers.blogspot.in/2014/10/appcompat-v21-material-design-for-pre.html用于预棒棒糖的应用程式。



文章来源: Number in Action Bar like Gmail