如何在Android片段中添加操作栏选项菜单

时间:2013-09-10 08:44:27

标签: android android-fragments android-actionbar android-optionsmenu

我正在尝试在 Android Fragments 中设置选项菜单。 ActionBar选项菜单未显示在我的片段中。

这是我的代码,我有onCreateOptionsMenu()onOptionSelected()功能。我的代码没有显示任何错误。但是没有显示选项菜单。

package org.reachout;

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;

import org.general.R;

public class ViewMessageFragment extends Fragment {

    /* (non-Javadoc)
     * @see android.support.v4.app.Fragment#onCreateView(android.view.LayoutInflater, android.view.ViewGroup, android.os.Bundle)
     */
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        if (container == null) {
            // We have different layouts, and in one of them this
            // fragment's containing frame doesn't exist.  The fragment
            // may still be created from its saved state, but there is
            // no reason to try to create its view hierarchy because it
            // won't be displayed.  Note this is not needed -- we could
            // just run the code below, where we would create and return
            // the view hierarchy; it would just never be used.
            return null;
        }
        return (LinearLayout)inflater.inflate(R.layout.viewmessages_tab_fragment_layout, container, false);
    }

    @Override
    public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
        // TODO Auto-generated method stub
        super.onCreateOptionsMenu(menu, inflater);
        inflater.inflate(R.menu.askexperts_menu, menu);
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
       // handle item selection
       switch (item.getItemId()) {
          case R.id.action_settings:
             // do s.th.
             return true;
          default:
             return super.onOptionsItemSelected(item);
       }
    }   

}

3 个答案:

答案 0 :(得分:90)

您需要在setHasOptionsMenu(true)中致电onCreate()

为了向后兼容,最好在onCreate()结束时尽可能晚地拨打此电话,或者在onActivityCreated()或类似的情况下尽快拨打此电话。

请参阅:https://developer.android.com/reference/android/app/Fragment.html#setHasOptionsMenu(boolean)

答案 1 :(得分:77)

  

我迟到的答案,但我认为这是另一种解决方案   这里没有提到所以张贴。

第1步:制作一个你要添加的xml菜单,就像我必须在我的操作栏上添加一个过滤器操作,这样我就创建了一个xml filter.xml 。要注意的主线是 android:orderInCategory ,这将在您想要显示的位置的第一个或最后一个显示操作图标。需要记下的另一件事是值,如果值小于那么它将首先显示,如果值大于那么它将在最后显示。

<强> filter.xml

<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" >


    <item
        android:id="@+id/action_filter"
        android:title="@string/filter"
        android:orderInCategory="10"
        android:icon="@drawable/filter"
        app:showAsAction="ifRoom" />


</menu>

第2步:在片段的 onCreate()方法中,只需按照提及的方式放入以下行,该行负责回调 onCreateOptionsMenu(菜单菜单,MenuInflater) inflater)方法就像在活动中一样。

@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setHasOptionsMenu(true);
    }

第3步:现在添加 onCreateOptionsMenu 方法,该方法将被覆盖为:

@Override
    public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
        inflater.inflate(R.menu.filter, menu);  // Use filter.xml from step 1
    }

第4步:现在添加 onOptionsItemSelected 方法,当您从 actionBar :

@Override
    public boolean onOptionsItemSelected(MenuItem item) {
        int id = item.getItemId();
        if(id == R.id.action_filter){
            //Do whatever you want to do 
            return true;
        }

        return super.onOptionsItemSelected(item);
    }

答案 2 :(得分:-18)

在AndroidManifest.xml中设置主题全息像这样:

<activity
android:name="your Fragment or activity"
android:label="@string/xxxxxx"
android:theme="@android:style/Theme.Holo" >