64

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);
       }
    }   

}
4

3 に答える 3

94

setHasOptionsMenu(true)電話する必要がありますonCreate()

下位互換性のために、この呼び出しをできるだけ遅く、またはそのようなものの終わりonCreate()または後で配置することをおonActivityCreated()勧めします。

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

于 2013-09-10T08:58:50.533 に答える
90

私は答えに遅れていますが、これはここに記載されていない別の解決策だと思うので投稿します。

ステップ1:アクションバーにフィルターアクションを追加する必要があるように、追加したいメニューのxmlを作成して、xml filter.xmlを作成しました。注意すべき主な行はandroid:orderInCategory です。これにより、表示したい場所の最初または最後にアクション アイコンが表示されます。書き留めておくべきもう 1 つのことは値です。値が小さい場合は最初に表示され、値が大きい場合は最後に表示されます。

フィルタ.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()メソッドに、前述のように以下の行を配置するだけです。これは、 Activity と同様に onCreateOptionsMenu(Menu menu, 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);
    }
于 2015-08-11T07:38:32.610 に答える
-18

AndroidManifest.xml でテーマ ホロを次のように設定します。

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

于 2015-05-10T18:54:18.983 に答える