Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how to make custom listview with clickable to each items(I mean , I am making a listview which holds one image button, two textview and I want to access position when user click items then it is not showing clickable. ).

share|improve this question
Which position you want to access ? Listview's rows button or list item ? – GrIsHu Mar 14 at 9:01

closed as too localized by RobinHood, ollo, Craig Swing, Alexis Pigeon, Peter DeWeese Mar 14 at 13:54

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

4 Answers

I think this will help you..

lv.setOnItemClickListener(new AdapterView.OnItemClickListener() 
 { 
      @Override 
      public void onItemClick(AdapterView arg0, View arg1,int position, long arg3) 
      { 

      } 
 });
share|improve this answer
lv.setOnItemClickListener() is not working – ajaydroid Mar 14 at 6:51
What's the error showing?? – Subburaj Mar 14 at 7:02

@Override public void onListItemClick(ListView l, View v, int position, long id) {

   // here position variable holding the ListView position which clicked by user 

}

share|improve this answer
lv.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub } }); sorry but I doesn't find out onlistitemclick fns. Can u give me some more explanation. – ajaydroid Mar 14 at 7:04
OnListItemClick() function available only when your Activity extends ListActivity. paste your listview adapter details then I'll write sample code for you. – Suresh Kumar Reddy Dangatla Mar 14 at 8:53

You can achieve this in the getView method of the Adapter you have applied to your customListView.

It would roughly be like using View v=customView.findViewById(id of your view i.e image etc.) also you have to set onClickListener on the particular view element i.e v in my case.

-- Edit --

A similar question Go through this linked question and the accepted answer also.

share|improve this answer
can you give any example with working code? – ajaydroid Mar 14 at 6:54
@user2027979 look at my edit this will help you for sure. – prateek Mar 14 at 7:03

You can inflate the custom layout in your listview which contains the Button, and 2 TextView like as below:

listview_row.xml

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
          android:orientation="horizontal" >

<TextView
    android:id="@+id/textView2"
    android:layout_width="75dp"
    android:layout_height="75dp"
    android:scaleType="fitXY"
     />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="5dp"
    android:layout_marginRight="0dp"
    android:layout_marginTop="15dp"
    android:text="Medium Text"
    android:textSize="15dp" />

  <ImageButton
    android:id="@+id/imageview1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_launcher"
      />

   </LinearLayout>

In your main activity layout add the listview as below:

main.xml

     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical" >
  <ListView
            android:id="@+id/listView1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >
 </ListView>
</LinearLayout>

After creating the layouts as above create a adapter class to add the custom layout in your listview with the extending BaseAdapter.

 public class App_Adapter extends BaseAdapter implements OnClickListener{

In that adpater class's getView method you need to inflate your layout.

 @Override
  public View getView(int position, View convertView, ViewGroup parent) {
         // TODO Auto-generated method stub
         View mView=convertView;
            if (convertView == null)  
              mView = inflater.inflate(R.layout.listview_row, null);

           TextView text1=(TextView)mView.findViewById(R.id.textView1));
           TextView text2=(TextView)mView.findViewById(R.id.textView2));
           ImageButton imagbtn=(ImageButton)mView.findViewById(R.id.imageview1);
         //set the image button click listener
      imagbtn..setOnClickListener(this);
   return mView;
   }

After that in your activity you can acess the listview and set onItemclick listener for it to access listview's list items as below:

  public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main); 
      ListView lv = (ListView)findViewById(R.id.listView1);
    lv.setAdapter(new App_Adapter());
    lv.setOnItemClickListener(new AdapterView.OnItemClickListener() 
     { 
       @Override 
       public void onItemClick(AdapterView arg0, View arg1,int position, long arg3) 
      { 
        } 
      });
     }
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.