我的偏好存储在变量“preference”中:
Preference preference = new Preference(this);
我想添加一个上下文菜单,以便在长按上显示。我已经创建了菜单/res/menu/pref_menu.xml
,我尝试了registerForContextMenu(preference);
但它只适用于视图。如何以偏好实现它?
答案 0 :(得分:0)
我通过在onPostCreate方法中注册来解决它:
registerForContextMenu(getListView());
在需要打开时设置特定首选项单击侦听器:
openContextMenu(getListView());