android - Fragments 内 ListView 上的上下文菜单

标签 android listview android-fragments contextmenu

我到处搜索,也尝试了我研究过的每一个代码,但不幸的是它们都不起作用。 :( 我已经添加了 registerForContextMenu() 方法,但当我单击列表中的某个项目时,它仍然不会弹出菜单。请帮忙。我已经疯了。:( 这是我到目前为止所得到的...

public class BorrowersFragment extends Fragment {
// TODO: Rename parameter arguments, choose names that match
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
Button btnSearch,btnGetAll;

private static final String ARG_PARAM1 = "param1";
private static final String ARG_PARAM2 = "param2";

// TODO: Rename and change types of parameters
private String mParam1;
private String mParam2;

private OnFragmentInteractionListener mListener;

public BorrowersFragment() {
    // Required empty public constructor
}

/**
 * Use this factory method to create a new instance of
 * this fragment using the provided parameters.
 *
 * @param param1 Parameter 1.
 * @param param2 Parameter 2.
 * @return A new instance of fragment BorrowersFragment.
 */
// TODO: Rename and change types and number of parameters
public static BorrowersFragment newInstance(String param1, String param2) {
    BorrowersFragment fragment = new BorrowersFragment();
    Bundle args = new Bundle();
    args.putString(ARG_PARAM1, param1);
    args.putString(ARG_PARAM2, param2);
    fragment.setArguments(args);
    return fragment;
}

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    if (getArguments() != null) {
        mParam1 = getArguments().getString(ARG_PARAM1);
        mParam2 = getArguments().getString(ARG_PARAM2);
    }

}

/*@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    return inflater.inflate(R.layout.fragment_borrowers, container, false);
}*/
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    //super.onCreate(savedInstanceState);
    //setContentView(R.layout.activity_main);
    View borrowerView = inflater.inflate(R.layout.fragment_borrowers, container, false);
    btnSearch = (Button) borrowerView.findViewById(R.id.btnSearch);
    //btnSearch.setOnClickListener(this);

    btnGetAll = (Button) borrowerView.findViewById(R.id.btnGetAll);
    //btnGetAll.setOnClickListener(this);

    BorrowerDBHelper repo = new BorrowerDBHelper(this.getContext());
    UserDBHelper repoUser = new UserDBHelper(this.getContext());
    User user = repoUser.getUserInfo();
    ArrayList<HashMap<String, String>> borrowerList =  repo.getBorrowerList(user.getId());
    if(borrowerList.size()!=0) {
        ListView lv = (ListView) borrowerView.findViewById(R.id.borrowerListView);
        ListAdapter adapter = new SimpleAdapter( BorrowersFragment.this.getContext(),borrowerList, R.layout.view_borrower, new String[] { "id","full_name"}, new int[] {R.id.borrower_Id, R.id.borrower_name});
        lv.setAdapter(adapter);
        registerForContextMenu(lv);
    }else{
        Toast.makeText(this.getContext(),"No student!",Toast.LENGTH_SHORT).show();
    }
    return  borrowerView;
}

@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {
    super.onCreateContextMenu(menu, v, menuInfo);
    menu.add(Menu.NONE, R.id.view_profile_item, Menu.NONE, "View Profile");
    menu.add(Menu.NONE, R.id.view_payments_item, Menu.NONE, "View Payment History");
    menu.add(Menu.NONE, R.id.add_payment_item, Menu.NONE, "Add Payment");
}

@Override
public boolean onContextItemSelected(MenuItem item) {
    switch (item.getItemId()) {
        case R.id.view_profile_item:
            Log.i("ContextMenu", "Item 1a was chosen");
            return true;
        case R.id.view_payments_item:
            Log.i("ContextMenu", "Item 1b was chosen");
            return true;
        case R.id.add_payment_item:
            Log.i("ContextMenu", "Item 1b was chosen");
            return true;
    }
    return super.onContextItemSelected(item);
}

// TODO: Rename method, update argument and hook method into UI event
public void onButtonPressed(Uri uri) {
    if (mListener != null) {
        mListener.onFragmentInteraction(uri);
    }
}

/*@Override
public void onAttach(Context context) {
    super.onAttach(context);
    if (context instanceof OnFragmentInteractionListener) {
        mListener = (OnFragmentInteractionListener) context;
    } else {
        throw new RuntimeException(context.toString()
                + " must implement OnFragmentInteractionListener");
    }
}*/

@Override
public void onDetach() {
    super.onDetach();
    mListener = null;
}

/**
 * This interface must be implemented by activities that contain this
 * fragment to allow an interaction in this fragment to be communicated
 * to the activity and potentially other fragments contained in that
 * activity.
 * <p>
 * See the Android Training lesson <a href=
 * "http://developer.android.com/training/basics/fragments/communicating.html"
 * >Communicating with Other Fragments</a> for more information.
 */
public interface OnFragmentInteractionListener {
    // TODO: Update argument type and name
    void onFragmentInteraction(Uri uri);
}
}

请注意,当我从 MainActivity 内的抽屉导航中选择该 fragment 时,该 fragment 会被调用/显示。 希望你能帮我。谢谢!

最佳答案

您想在用户单击 ListView 项时打开菜单吗?

因此,您只需在项目上设置一个 OnLongClickListener (或一个简单的 OnClickListener ,具体取决于您要执行的操作)并打开:

android.support.v7.widget.PopupMenu:

@Override
public boolean onLongClick(View v) {
    PopupMenu menu = new   PopupMenu(YourActivity.this, listItem);
    menu.getMenuInflater().inflate(R.menu.your_menu_file, menu.getMenu());
    menu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
      @Override
      public boolean onMenuItemClick(MenuItem item) {
        switch (item.getItemId()) {
          case R.id.your_first_menu_item:
            // do something
            break;
        }
        return false;
      }
   });
   menu.show();
   return false;
}

关于android - Fragments 内 ListView 上的上下文菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41458048/

相关文章:

android - 以编程方式设置 GoogleMapOptions

android - 无法将 Android map fragment 缩放到当前位置

android - 如何使用 fragment 创建后才可用的数据填充 fragment ?

android - Android 中带有过滤器菜单按钮的 GridView

android - 如何在android中的editText中输入最大长度的文本后自动隐藏键盘?

java - android中ListView数据显示时实现搜索关键词框

c# - ListView点击空白区域时未触发点击事件

java - 可以在listview的setListAdapter或SimpleAdapter中显示对象值的Arraylist吗?

android - 如何在 HTTP POST 上显示进度条?

android - 在BottomSheetFragment中将onCancel重写为setState为COLLAPSED