Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I m using one custom listview . When i m click on listview i didn't getting onClick Event .

Here is my code .

        lvlList = (ListView)findViewById(R.id.lvlList);
        lvlList.setOnItemClickListener(new OnItemClickListener() 
        {
            public void onItemClick(AdapterView<?> a, View v,int position, long id) 
            {
                Toast.makeText(getBaseContext(), "Click", Toast.LENGTH_LONG).show();


            }
        });

lvlList.setAdapter(new OrderAdapter(getBaseContext()));

OrderAdapter

private class OrderAdapter extends BaseAdapter
{
    private LayoutInflater mInflater;

    public OrderAdapter(Context context) 
    {
        mInflater = LayoutInflater.from(context);
    }

    public View getView(int position, View convertView, ViewGroup parent) 
    {
        ViewHolder holder;

        if (convertView == null) 
        {
            convertView = mInflater.inflate(R.layout.example, null);
            holder = new ViewHolder();

            holder.txtTest = (TextView) convertView.findViewById(R.id.txtTest);

            convertView.setTag(holder);
        } 
        else 
        {
            holder = (ViewHolder) convertView.getTag();
        }

        holder.txtTest.setText(Util.SampleTest.get(position));
                    return convertView;
    }

    public class ViewHolder 
    {
        public TextView txtTets;
    }

    public int getCount(){return Util.SampleTest.size();}

    public Object getItem(int position){return position;}

    public long getItemId(int position){return position;}
}
share|improve this question
Are there any items in the list. You are setting onItemClick. Can you post the code for OrderAdapter. – Robby Pond Mar 15 '11 at 12:44
yes there are more than 20 items in list . Here i add my OrderAdapter . – Chirag Raval Mar 15 '11 at 12:45
list is display in listview..? – CapDroid Mar 15 '11 at 12:53
yes it is display in listview . – Chirag Raval Mar 15 '11 at 12:54
getItem should return Util.SampleTest.get(position) but I don't think that's the issue. – Robby Pond Mar 15 '11 at 13:02
show 1 more comment

6 Answers

You need to set android:descendantFocusability="blocksDescendants" in your custom xml layout file for the LinearLayout or whatever layout you've been using. (for defining your custom row)

That should solve your problem.Because it did solve mine.If it solves kindly mark my post as your answer.

You can also refer the comments here

share|improve this answer

check this: ListView with clickable/editable widget

share|improve this answer
i m already having this code . but i dont like to do that way . – Chirag Raval Mar 15 '11 at 13:13
then you apparently won't have onclickitemlistener working :) focusable objects seem to bind onclick events and are placed over the list item. sounds quite reasonable – Alex Mar 15 '11 at 13:43

If you have clickable items in your list, you have to play with the focus to be able to receive both list item clicked event AND list items children click events.

Call the following code on your list items as they are created:

listItem.setDescendantFocusability(FOCUS_BLOCK_DESCENDANTS);

Found on http://code.google.com/p/android/issues/detail?id=3414, answer #27

share|improve this answer

Make sure your custom layout does not have a CheckBox before the would-be TextView. You can use an ImageView to fulfill the CheckBox functionality.

share|improve this answer

First, Set Adapter and then set on click listener event on listview. Then try again.

share|improve this answer
if not than .. @Override public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) { // TODO Auto-generated method stub } this function writes out of create method and implements OnClickListener in your activity – SBJ Mar 16 '11 at 12:56
@Samit : it is not working when set adapter first . – Chirag Raval Mar 16 '11 at 13:01
you are using xml for list view controls...? – SBJ Mar 16 '11 at 13:08
yes i am using xml for listview . – Chirag Raval Mar 16 '11 at 13:13
check clickable property is disable or editable property is set of any control of listview... – SBJ Mar 16 '11 at 13:33
show 1 more comment

try this.

  if (convertView == null) 
    {
        convertView = mInflater.inflate(R.layout.example, null);
        holder = new ViewHolder();

        holder.txtTest = (TextView) convertView.findViewById(R.id.txtTest);
        convertView.setClickable(true);
        convertView.setOnClickListener(new OnClickListener() {          
            @Override
            public void onClick(View v) {
         }
       }

        convertView.setTag(holder);

    } 
    else 
    {
        holder = (ViewHolder) convertView.getTag();
    }

    holder.txtTest.setText(Util.SampleTest.get(position));
                return convertView;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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