このリストビューでアプリケーション表示をアンインストールするために長いクリックを使用すると、リストビューでエラーが発生します。コードは次のとおりです。
protected boolean setOnItemLongClickListener(ListView l, View v, int position, long id) {
super.onItemLongClick(l, v, position, id);// Error
ApplicationInfo app = applist.get(position);
Uri packageUri = Uri.parse("package:"+app.packageName);
Intent uninstallIntent =
new Intent(Intent.ACTION_DELETE, packageUri);
startActivity(uninstallIntent);
return true;
}
エラーは次のとおりです。The method onItemLongClick(ListView, View, int, long) is undefined for the type ListActivity
どうすれば解決できますか? 私はすでに実装していOnLongClickListener
ます。ありがとう