Hi,

This is the layout file
  <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="@android:color/transparent"
            android:orientation="vertical" >

            <ListView
                android:id="@+id/android:list"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_margin="5dip"
                android:background="@drawable/item_bg"
                android:cacheColorHint="#00000000"
                android:divider="@null"
                android:dividerHeight="2dp"
                android:scrollbars="none"
                android:smoothScrollbar="true" >
            </ListView>
        </LinearLayout>


Below is the getView


        ViewHolder holder = new ViewHolder();

        convertView = mInflater.inflate(R.layout.commentitem, null);

        holder.fbName = (TextView) convertView
                .findViewById(R.id.reviewText);
        holder.fbName.setTypeface(fontObj_rockwell);
        holder.fbImage = (ImageView) convertView.findViewById(R.id.fbImage);


        String profileFBURL = "http://graph.facebook.com/";
                + m_Show.getFbids_watching().get(position) + "/picture";
        // Utility.setImageToImageView(profileFBURL, holder.fbImage);

        holder.fbImage.setImageBitmap(model.getRoundedImage(profileFBURL,
                profileFBURL, 10));

        try {
            FriendInfo frndInfo = FacebookFriendAPIHandler
                    .getFacebookFriendInfo(m_Show.getFbids_watching().get(
                            position));
            holder.fbName.setText(frndInfo.getName());
        } catch (Exception e) {

            e.printStackTrace();
        }


        return convertView ;

Please reply its too urgent
-- 
Regards,
Vani Reddy

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to