android中选中菜单的显示跳转和隐式跳转的实例介绍

时间:2021-12-29 06:48:57

查了好多资料,现发还是不全,干脆自己整理吧,至少保证在我的做法正确的,以免误导读者,也是给自己做个记录吧!

简介

android供给了三种菜单类型,分别为options menu,context menu,sub menu。

options menu就是通过按home键来表现,context menu需要在view上按上2s后表现。这两种menu都有可以参加子菜单,子菜单不能种不能嵌套子菜单。options menu最多只能在幕屏最下面表现6个菜单项选,称为iconmenu,icon menu不能有checkable项选。多于6的菜单项会以more icon menu来调出,称为expanded menu。options menu通过activity的oncreateoptionsmenu来生成,这个函数只会在menu第一次生成时用调。任何想转变options menu的设法只能在onprepareoptionsmenu来现实,这个函数会在menu表现前用调。onoptionsitemselected 用来理处选中的菜单项。

context menu是跟某个体具的view绑定在一起,在activity种用registerforcontextmenu来为某个view注册context menu。context menu在表现前都市用调oncreatecontextmenu来生成menu。oncontextitemselected用来理处选中的菜单项。  

android还供给了对菜单项行进分组的功能,可以把似相功能的菜单项分红同一个组,这样以可就通过用调setgroupcheckable,setgroupenabled,setgroupvisible来设置菜单属性,而无须独单设置。

options menu

notepad中使用了options menu和context menu两种菜单。首先来看生成options menu的oncreateoptionsmenu函数。 

 

复制代码 代码如下:

  

 

  menu.add(0, menu_item_insert, 0, r.string.menu_insert)
                .setshortcut('3', 'a')
                .seticon(android.r.drawable.ic_menu_add);  
 

  

这是一个标准的插入一个菜单项的方法,菜单项的id为menu_item_insert。有意思的是下面这几句代码: 

 

复制代码 代码如下:

  

 

 intent intent = new intent(null, getintent().getdata());
        intent.addcategory(intent.category_alternative);
        menu.addintentoptions(menu.category_alternative, 0, 0,
                new componentname(this, noteslist.class), null, intent, 0, null); 
 

  

这到底有何处用呢?其实这是一种态动菜单技巧(也有点像件插机制),若某一个activity,其类型是”android.intent.category.alternative”,据数是”vnd.android.cursor.dir/vnd.google.note”的话,系统就会为这个activity加增一个菜单项。在androidmanfest.xml中查看后现发,没有一个activity符合条件,所以这段代码并没有态动添加出任何一个菜单项。   

为了验证上述分析,我们可以来做一个验实,在androidmanfest.xml中行进修改,看否是会态动生成出菜单项。    

验实一 

      首先我们来建创一个新的activity作为目标activity,名为helloandroid,没有什么功能,就是表现一个界面。  

 

复制代码 代码如下:

  

 

public class helloandroid extends activity {
    @override
    protected void oncreate(bundle savedinstancestate) {
        super.oncreate(savedinstancestate);
        this.setcontentview(r.layout.main);
    }
}   
 

  

它所对应的局布界面xml文件如下: 

 

复制代码 代码如下:

  

 

<?xml version="1.0" encoding="utf-8"?>
<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<textview  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" android:id="@+id/textview01"/>

<button android:id="@+id/button01" android:layout_height="wrap_content" android:layout_width="fill_parent" android:text="@string/txtinfo"></button>
</linearlayout> 
 

  

然后修改androidmanfest.xml,参加下面这段配置,让helloandroid满意上述两个条件:

 

复制代码 代码如下:

  

 

  <activity android:name="helloandroid" android:label="@string/txtinfo">
            <intent-filter>
                <action android:name="com.android.notepad.action.hello_test" />
                <category android:name="android.intent.category.alternative"/>
                <data android:mimetype="vnd.android.cursor.dir/vnd.google.note" />
            </intent-filter>
        </activity>
 

  

好了,行运下试试,哎,还是没有态动菜单项参加呀!怎么回事呢?查看代码后现发,原来是onprepareoptionsmenu弄的鬼!这个函数在oncreateoptionsmenu后之行运,下面这段代码中,由于menu.category_alternative是指向同一个组,所以把oncreateoptionsmenu中设置的菜单项给盖覆掉了,而由于onprepareoptionsmenu没有给menu.category_alternative附新值,故menu.category_alternative还是为空。

 

复制代码 代码如下:

  

 

   intent intent = new intent(null, uri);
            intent.addcategory(intent.category_alternative);
            menu.addintentoptions(menu.category_alternative, 0, 0, null, specifics, intent, 0,items); 
 

  

好的,那我们临时把下面这几句给释注掉,当然,也可以不释注这几句,在oncreateoptionsmenu中改groupid号,即将menu.category_alternative为改menu.first,其他的也行,但意注不要为改menu.none,这样会盖覆掉。

 

复制代码 代码如下:

  

 

menu.add(0, menu_item_insert, 0, r.string.menu_insert)
                .setshortcut('3', 'a')
                .seticon(android.r.drawable.ic_menu_add);
 

  

添加的菜单。因为menu.none也为0。行运后以可就看到态动菜单出来了!

android中选中菜单的显示跳转和隐式跳转的实例介绍

下面这个options menu是在noteslist界面上没有日记列表选中的情况下生成的,若先选中一个日记,然后再点”menu”,则生成的options menu是下面这样的:

android中选中菜单的显示跳转和隐式跳转的实例介绍

    每日一道理
一个安静的夜晚,我独自一人,有些空虚,有些凄凉。坐在星空下,抬头仰望美丽天空,感觉真实却由虚幻,闪闪烁烁,似乎看来还有些跳动。美的一切总在瞬间,如同“海市蜃楼”般,也只是刹那间的一闪而过,当天空变得明亮,而这星星也早已一同退去……

哎,又态动加增了两个菜单项”edit note”和”edit title”,这又是如何态动参加的呢?这就是onprepareoptionsmenu的劳功了。

 

复制代码 代码如下:

  

 

    uri uri = contenturis.withappendedid(getintent().getdata(), getselecteditemid());
 

  

首先获得选中的日记(若没有择选,则uri为空)

 

复制代码 代码如下:

  

 

  intent[] specifics = new intent[1];
            specifics[0] = new intent(intent.action_edit, uri);
            menuitem[] items = new menuitem[1];
 

  

然后为选中的日记建创一个intent,操纵类型为intent.action_edit,据数为选中日记的uri.于是会为选中的日记建创一个”edit note”菜单项。

 

复制代码 代码如下:

  

 

 intent intent = new intent(null, uri);
            intent.addcategory(intent.category_alternative);
            menu.addintentoptions(menu.category_alternative, 0, 0, null, specifics, intent, 0,
                    items);
 

  

这几句和下面oncreateoptionsmenu函数中似类,于用态动加增菜单项,若某一个activity,其类型是”android.intent.category.alternative”,据数是”vnd.android.cursor.item/vnd.google.note”的话,系统就会为这个activity加增一个菜单项。在androidmanfest.xml中查看后现发,titleeditor这个activity符合条件,于是系统就为titleeditor这个activity态动添加一个菜单项”edit title”。

 

复制代码 代码如下:

  

 

else {
            menu.removegroup(menu.category_alternative);
        }
 

  

若日记列表为空,则从菜单中除删组号为menu.category_alternative的菜单项,只剩下”add note”菜单项。

理处“选中菜单项”事件

菜单项选中事件的理处非常简略,通过onoptionsitemselected来成完,这里只是简略地用调 startactivity(new intent(intent.action_insert, getintent().getdata()));这个intent的操纵类型为intent.action_insert,据数为日记列表的uri,即”content:// com.google.provider.notepad/notes”

 

复制代码 代码如下:

  

 

     @override
    public boolean onoptionsitemselected(menuitem item) {
        switch (item.getitemid()) {
        case menu_item_insert:
            // launch activity to insert a new item
            startactivity(new intent(intent.action_insert, getintent().getdata()));
            return true;
        }
        return super.onoptionsitemselected(item);
    }
 

  

context menu

下面分析另一种菜单---上下文菜单,这通过重载oncreatecontextmenu函数现实。首先确认已选中了日记列表中的一个日记,若没择选,则直接返回。cursor指向选中的日记项。

 

复制代码 代码如下:

  

 

   cursor cursor = (cursor) getlistadapter().getitem(info.position);
        if (cursor == null) {
            // for some reason the requested item isn't available, do nothing
            return;
        }
 

  

  然后,设置上下文菜单的标题为日记标题

 

复制代码 代码如下:

  

 

        // setup the menu header
        menu.setheadertitle(cursor.getstring(column_index_title));

 

 

        最后为上下文菜单加增一个菜单项

  

复制代码 代码如下:

    

 

        // add a menu item to delete the note
        menu.add(0, menu_item_delete, 0, r.string.menu_delete);

    

  

 

 对于上下文菜单项选中的事件理处,是通过重载oncontextitemselected现实的。

    

复制代码 代码如下:

  

 

        switch (item.getitemid()) {
            case menu_item_delete: {
                // delete the note that the context menu is for
                uri noteuri = contenturis.withappendedid(getintent().getdata(), info.id);
                getcontentresolver().delete(noteuri, null, null);
                return true;
            }
        }
        return false;
}

   

   

 

对于日记的除删,首先用调contenturis.withappendedid(getintent().getdata(), info.id);来接拼出待除删日记的uri.然后getcontentresolver().delete(noteuri, null, null);用调层下的content provider去除删此日记。

验实二

来做个简略验实,在上述代码基础上加增一个上下文菜单项。首先在oncreatecontextmenu函数中加增一个上下文菜单项:

 

复制代码 代码如下:

      

 

menu.add(0,menu_item_insert,0,r.string.menu_insert);

 

     

 

      然后为其在oncontextitemselected函数中加增一个理处进程:

 

复制代码 代码如下:

      

 

case menu_item_insert:
            {
                new alertdialog.builder(this).seticon(r.drawable.app_notes)
                .settitle(r.string.app_name).setmessage(r.string.error_message).setpositivebutton(r.string.button_ok, new onclicklistener(){

                    public void onclick(dialoginterface dialog, int which) {
                        // todo auto-generated method stub

                    }

                }).show();
                return true;
            }

 

      

 

      验实结果如下:
android中选中菜单的显示跳转和隐式跳转的实例介绍

android中选中菜单的显示跳转和隐式跳转的实例介绍