【Android】嵌套Fragment無法接收onCreateOptionsMenu事件的問題

來源:互聯網
上載者:User

前言

嵌套的二級Fragment無法接收onCreateOptionsMenu事件的問題,設定了setHasOptionsMenu也不管用。

 

聲明
  歡迎轉載,但請保留文章原始出處:)
    部落格園:http://www.cnblogs.com

    農民伯伯: http://www.cnblogs.com/over140/ 

 

本文

補充說明:

如果通過緩衝Fragment手動調用二級Fragment,可能會出現莫名其妙的問題,比如更多Menu不顯示。

解決辦法:

在一級Fragment中添加Menu,可以在一級onOptionsItemSelected中手動調用二級的此方法來處理相關事件。

範例程式碼:

    @Override
    public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
        switch (getSelectedPosition()) {
        case 1:
            inflater.inflate(R.menu.menu1, menu);
            break;
        case 2:
            inflater.inflate(R.menu.menu2, menu);
            break;
        case 0:
        default:
            inflater.inflate(R.menu.menu3, menu);
            break;
        }
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        Fragment fragment = getFragmentByPosition(getSelectedPosition());
        if (fragment != null)
            fragment.onOptionsItemSelected(item);
        return super.onOptionsItemSelected(item);
    }

代碼說明:

範例程式碼是一級Fragment,getFragmentByPosition返回的是二級Fragment。

 

相關文章:

【Andorid X 項目筆記】嵌套Fragment的使用(5) 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.