Add Context Menu Icon in android

前端 未结 5 1080
时光说笑
时光说笑 2020-12-14 19:15

I have a Listview with a ContextMenu, but when I setIcon for ContextMenu look like it doesn\'t work

public void onCreateContextMenu(ContextMenu menu , View v         


        
5条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-14 19:41

    While the Android API does not allow for Icons in Context menus you can see many places where Android is using them. Long pressing your home screen is one good example.

    I took the time to dig through the Launcher and AnyCut source and found that Google is using their own custom class that extends a BaseAdapter along with their own custom layout.

    I was able to copy their class and layout almost exactly and use it in my own app to accomplish. The class if you want to search for it is called AddAdapter.java.

    Enjoy!

提交回复
热议问题