Android更改popupmenu背景並顯示表徵圖

來源:互聯網
上載者:User

標籤:無法   無效   .sh   his   raw   core   背景   文本   appcompat   

似乎popupmenu是無法單獨設定style的,好像是由context決定的,前幾天需要設定style,找了很久才找一一個辦法,似乎是通過 ContextThemeWrapper 封裝一個 Context 然後把 Context 作為參數傳遞給popupmenu的建構函式

java代碼如下

/**************************************************************************/       Context wrapper = new ContextThemeWrapper(this, R.style.MyPopupStyle);/**************************************************************************/       PopupMenu popupMenu = new PopupMenu(wrapper, view);       popupMenu.getMenuInflater().inflate(R.menu.user_main_toolbar_add_items, popupMenu.getMenu());       popupMenu.show();

  

style檔案如下

<style name="MyPopupStyle" parent="Widget.AppCompat.PopupMenu">        <item name="android:itemBackground">@drawable/toolbar_item_selector</item>        <item name="android:textColor">@color/whitesmoke</item></style>

  

記得當時使用background屬性是無效的,改成了itembackground才有了效果

而且為了使popupmenu可以顯示icon,找了一種方法,並沒有去查原因,僅僅是用了,代碼如下

/**************************************************************************/     Context wrapper = new ContextThemeWrapper(this, R.style.MyPopupStyle);/**************************************************************************/     PopupMenu menu = new PopupMenu(wrapper, view);     menu.inflate(R.menu.user_main_toolbar_add_items);     MenuPopupHelper menuHelper = new MenuPopupHelper(wrapper, (MenuBuilder) menu.getMenu(), view);     menuHelper.setForceShowIcon(true);     menuHelper.show();

  

而且官方文檔好像沒搜到這個類,Google第一條是原始碼,裡面有各個方法的說明,包括setForceShowIcon,

本文本來只用來自己參考的,不過可能會有人看到,還是貼出連結,可以看下

MenuPopupHelper。java

 

Android更改popupmenu背景並顯示表徵圖

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.