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)
小智 -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)
| 归档时间: |
|
| 查看次数: |
3996 次 |
| 最近记录: |