Android OnItemClickListener not working Android OnItemClickListener not working android android

Android OnItemClickListener not working


It seems you have imported the wrong OnItemClickListener, try this one instead, and remove import of android.view.View.OnClickListener

import android.widget.AdapterView.OnItemClickListener;


how about filling in the body of your new object by defining the onItemClick() function:

public void onItemClick(AdapterView parent, View v, int position, long id){    // Display a messagebox.    Toast.makeText(this,"Your Listener Works!",Toast.LENGTH_SHORT).show();}

try using ctrl+shift+o in eclipse to organize all your imports automatically...


Just implement OnItemClickListener to your class.

Like This:

public class ClassName extends Activity implements OnItemClickListener{}