程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> fragment-如何重寫 ListFragment中的 LongPress

fragment-如何重寫 ListFragment中的 LongPress

編輯:編程綜合問答
如何重寫 ListFragment中的 LongPress

在我的應用程序中有一個ListFragment Activity。
我想為onItemClickedLongPress創建一個方法,當用戶點擊時,一個菜單就會彈出。

那麼在ListFragment Activity中如何重寫LongPress?
能給我點指導嗎?謝謝大家!

最佳回答:


@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);
    //.......
    registerForContextMenu(getListView());
}

@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
    super.onCreateContextMenu(menu, v, menuInfo);
    AdapterView.AdapterContextMenuInfo amenuInfo = (AdapterView.AdapterContextMenuInfo) menuInfo;
    Object item = getListAdapter().getItem(amenuInfo.position);
    //item could be Cursor/String/YourObject it depends on Adapter
    //show popup fx. QuickAction from https://github.com/lorensiuswlt/NewQuickAction
    QuickAction qa = new QuickAction(getActivity());
    qa.setAnimStyle(QuickAction.ANIM_AUTO);
    qa.show(amenuInfo.targetView);
}

參照:https://github.com/lorensiuswlt/NewQuickAction

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved