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 have 1 ListView. ListView contain RatingBar and text. Can i access it, if yes how?

ArrayList<ItemDetails> image_details = GetSearchResults();
final ListView lv1 = (ListView) findViewById(R.id.listV_main);
lv1.setAdapter(new ItemListBaseAdapter(this, image_details));

private ArrayList<ItemDetails> GetSearchResults()
{
    ArrayList<ItemDetails> results = new ArrayList<ItemDetails>();
    item_details = new ItemDetails();
    item_details.setName("XYZ");
    item_details.setImageNumber(1);
    return results;
}

This is my base adapter class

public class ItemListBaseAdapter extends BaseAdapter 
{
    private static ArrayList<ItemDetails> itemDetailsrrayList;
    private Integer[] imgid = {
            R.drawable.p1,
            R.drawable.bb2 }
    private LayoutInflater l_Inflater;

    public ItemListBaseAdapter(Context context, ArrayList<ItemDetails> results) {
        itemDetailsrrayList = results;
        l_Inflater = LayoutInflater.from(context);
    }
    public View getView(int position, View convertView, ViewGroup parent) 
    {
        ViewHolder holder;
        if (convertView == null) 
        {
            convertView = l_Inflater.inflate(R.layout.item_details_view, null);
            holder = new ViewHolder();
            holder.txt_itemName = (TextView) convertView.findViewById(R.id.name);
            holder.itemImage = (ImageView) convertView.findViewById(R.id.photo);
            holder.rate = (RatingBar)convertView.findViewById(R.id.rating);
            convertView.setTag(holder);
        } else {
            holder = (ViewHolder) convertView.getTag();
        }
        holder.txt_itemDescription.setText(itemDetailsrrayList.get(position).getItemDescription());
        holder.itemImage.setImageResource(imgid[itemDetailsrrayList.get(position).getImageNumber() - 1]);
        return convertView;
    }

this is my holder class

    static class ViewHolder {
        TextView txt_itemName;
        ImageView itemImage;
        RatingBar rate;
    }
}
share|improve this question
Could you share the code what you have tried till now?, it become simple for us to answer it. – vinaykumar Sep 8 '12 at 9:22
Please share the code. – VendettaDroid Sep 8 '12 at 9:37
see my edit ... – user1153176 Sep 8 '12 at 9:56
holder.rate.setProgress(10); – Dmytro Danylyk Sep 8 '12 at 9:59

closed as not a real question by Mitch Wheat, Luksprog, j0k, ЯegDwight, tereško Sep 9 '12 at 23:39

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.