当前位置: 代码迷 >> Android >> android - Actionbar 上的 MenuItem 的 使用细节跟优化
  详细解决方案

android - Actionbar 上的 MenuItem 的 使用细节跟优化

热度:500   发布时间:2016-04-28 01:30:51.0
android - Actionbar 上的 MenuItem 的 使用细节和优化

MenuItem是actionbar上的元素,ui设计的时候的很多用这个控件。

使用:

1.编写menu.xml资源文件

<span style="font-size:14px;"><menu xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    xmlns:tools="http://schemas.android.com/tools"    tools:context=".MainActivity">    <item        android:id="@+id/action_inbox"        android:icon="@mipmap/ic_inbox_white"        android:title="Inbox"        app:showAsAction="always" /></menu></span>
可以设置icon文件,但是显示效果可能不是很好。

showAsAction代表是否在actinbar中出现,常用always,ifroom,never;


2.在action中加载:

<span style="font-size:14px;">    @Override    public boolean onCreateOptionsMenu(Menu menu) {        getMenuInflater().inflate(R.menu.menu_main, menu);        return true;    }</span>

注意,可以自定义按钮的属性,就像自定义控件那样,

首先编写布局文件:

<span style="font-size:14px;"><?xml version="1.0" encoding="utf-8"?><ImageButton xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="?attr/actionBarSize"    android:layout_height="?attr/actionBarSize"    android:background="@drawable/btn_default_light"    android:src="@mipmap/ic_inbox_white" /></span>

然后只需要在action的oncreateMenu()方法中增加几行代码,找到这个actionitem,然后调用setActionView()方法。

<span style="font-size:14px;">    @Override    public boolean onCreateOptionsMenu(Menu menu) {        getMenuInflater().inflate(R.menu.menu_main, menu);        inBoxMenuItem = menu.findItem(R.id.action_inbox);        inBoxMenuItem.setActionView(R.layout.menu_item_view);        return true;    }</span>



  相关解决方案