i want to get text of position of listview having check box is chacked .Listview comtains textview and checkbox coming from baseadapter
    holder = new ViewHolder();
            holder.full_name = (TextView) convertView
                    .findViewById(R.id.social_name);
            holder.social_network_pic = (ImageView)convertView.findViewById(R.id.social_image);
            holder.checkBox = (CheckBox)convertView.findViewById(R.id.social_check_box);
            convertView.setTag(holder);
            Log.e("Position=", "" + position);
            holder = (ViewHolder) convertView.getTag();
            String holderValue = socila_network_name_arraya_list.get(position).get("serviceLabel").toString();
            holder.full_name.setText(socila_network_name_arraya_list.get(position).get("serviceData").toString());
            int resID = getResources().getIdentifier(holderValue , "drawable", getPackageName());
            holder.social_network_pic.setImageResource(resID);
             holder.checkBox.setOnClickListener(CreatePost.this);
            holder.checkBox.isChecked();
after that i am not getting how to do this i need urgentaly:0