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

I am facing a problem of application crash. I have a list view of the contact list. When I click on the visible listview to change its background colour it works but when I try to scroll down the list and click then application crashes. The log complains about the null point exception error. I am not able to solve it any help will be highly appreciated. Here is the image of the application: http://postimage.org/image/lrsk6d7kj/

ContactListActivity1.java

protected void onListItemClick(ListView l, View v, int position, long id) {
        super.onListItemClick(l, v, position, id);

        l.getChildAt(position).setBackgroundColor(Color.GRAY);

             Object o = this.getListAdapter().getItem(position);

             Contact1 c = (Contact1) o;     

             Toast.makeText(this, c.getDisplayName(),
             Toast.LENGTH_SHORT).show();


             // Toast.makeText(this, c.getId(), Toast.LENGTH_SHORT).show();
             ids.add(c.getDisplayName()); System.out.println("Testing id" +
              ids);

        }

Code for adapter: ContactAdapter1.java

public class ContactAdapter1 extends ArrayAdapter<Contact1> {

    private final List<Contact1> _contacts;
    private final Activity _context;
    //ListView lv;

    public ContactAdapter1(Activity context, List<Contact1> contacts) {
        super(context, R.layout.contactlistitem, contacts);
        this._contacts = contacts;
        this._context = context;
    }

    static class ViewHolder {
        protected TextView text;
        private Contact1 _contact;
        public ImageView imageview;

        protected void setContact(Contact1 contact) {
            text.setText(contact.getDisplayName());
            imageview.setImageBitmap(contact.getImage());
            _contact = contact;
        }

        protected Contact1 getContact() {
            return _contact;
        }
    }

    @Override
    public Contact1 getItem(int position) {
        System.out.println("Checking current position:"
                + _contacts.get(position));
        return _contacts.get(position);
    }

    @Override
    public View getView(final int position, View convertView, ViewGroup parent) {

        View view = null;

        LayoutInflater inflater = _context.getLayoutInflater();
        view = inflater.inflate(R.layout.contactlistitem, null);

        final ViewHolder viewHolder = new ViewHolder();
        viewHolder.text = (TextView) view.findViewById(R.id.txtDisplayName);
        viewHolder.imageview = (ImageView) view
                .findViewById(R.id.contact_image);
        viewHolder.setContact(_contacts.get(position));
        view.setTag(viewHolder);    

        return view;
    }

![}][2]
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.