同时使用setOnItemClickListener和setOnItemLongClickListener两个侦听器同时触发或同时工作.为什么

7 android android-intent android-layout

ListView我使用setOnItemClickListener()setOnItemLongClickListener().当我点击一个项目时它工作正常,但是当我长按一个项目时,有时两个听众同时被解雇或同时工作.为什么?

/**
* on click of list view item show the run time webview.
*/
mListViewStar.setOnItemClickListener(new OnItemClickListener() {
    @Override
    public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
                long arg3) {
        isHome = true;
        Animation translate1 = AnimationUtils.loadAnimation(Home.this,
                R.anim.tran_right);
        mRelativeLayout.setVisibility(View.GONE);
        mRelativeLayout.startAnimation(translate1);
        // mProgressBar.setVisibility(View.VISIBLE);
        mProgressDialog = ProgressDialog.show(Home.this, "",
                "Loading...");
        addWebView(mArrayListJBSelectedUrls.get(arg2)
            .getStrSelectedWebsiteUrl().toString(), arg2);
    }
});
/**
* on long press delete item from list view
*/
mListViewStar.setOnItemLongClickListener(new OnItemLongClickListener() {
    @Override
    public boolean onItemLongClick(AdapterView<?> arg0, View arg1,
                    int arg2, long arg3) {
        position = arg2;
        AlertDialog.Builder mAlert = new AlertDialog.Builder(Home.this);
        mAlert.setTitle(getString(R.string.alert));
        mAlert.setIcon(R.drawable.logo);
        mAlert.setMessage(getString(R.string.delete_item_dialog));
        mAlert.setPositiveButton(getString(R.string.yes),
            new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface dialog,
                        int which) {
                    mDataBaseMethod.open();
                    Log.i("Delete", ""
                        + mArrayListJBSelectedUrls
                        .get(position)
                        .getStrSelectedUrlId());
                    mDataBaseMethod
                        .deleteWebSites(mArrayListJBSelectedUrls
                        .get(position)
                        .getStrSelectedUrlId()
                        .toString());
                    mArrayListJBSelectedUrls.remove(position);
                    starBaseAdapter.notifyDataSetChanged();
                    mDataBaseMethod.close();
                }
        });
        mAlert.setNegativeButton(getString(R.string.no),
            new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface dialog,
                        int which) {
                    dialog.dismiss();
                }
        });
        AlertDialog alertDialog = mAlert.create();
        alertDialog.show();
        return true;
    }
});
Run Code Online (Sandbox Code Playgroud)

use*_*069 27

在onItemLongClick上添加return true


小智 -1

尝试修复

 public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
            long arg3)
Run Code Online (Sandbox Code Playgroud)

public boolean onItemLongClick(AdapterView<?> arg0, View arg1,
                int arg2, long arg3)
Run Code Online (Sandbox Code Playgroud)

public void onItemClick(AdapterView<?> arg0,final View arg1,final int arg2,
          final long arg3)

public boolean onItemLongClick(AdapterView<?> arg0,final View arg1,
               final int arg2,final long arg3)
Run Code Online (Sandbox Code Playgroud)