标签:style blog http io color ar 使用 sp strong
魅族适配:
SmartBar 实现tab界面:
菜单详解:
http://harrysmithliu.blog.163.com/blog/static/2123811942012113104827/
1. 使用 Menu 菜单实现:
com.meizu.smartbar.ActionBarList
@Override public boolean onCreateOptionsMenu(Menu menu) { MenuInflater inflater = getMenuInflater(); inflater.inflate(R.menu.action_bar_list_menu, menu); return super.onCreateOptionsMenu(menu); }
showAsAction:
这个属性可接受的值有:
1、always:这个值会使菜单项一直显示在Action Bar上。
2、ifRoom:如果有足够的空间,这个值会使菜单项显示在Action Bar上。
3、never:这个值使菜单项永远都不出现在Action Bar上。
4、withText:这个值使菜单项和它的图标,菜单文本一起显示。
标签:style blog http io color ar 使用 sp strong
原文地址:http://www.cnblogs.com/zhiqixue/p/4072909.html