我正在使用SwipeList库在我的活动中实现列表。
myList=(SwipeListView)findViewById(R.id.my_swipe_lv_list);
在方法public void onCreate(Bundle savedInstanceState)
中,我曾经为上下文菜单注册列表
registerForContextMenu(callogList);
我也覆盖
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo)
和
public boolean onContextItemSelected(MenuItem item) .
当我点击列表ContexMenu中的项目时出现问题,我想在longPress上调用contextMenu它应该是默认行为。
任何帮助???