Hi i am putting custom layout in Android 'GalleryView' i have following code in my getview() method. But its giving Exception The specified child already has a parent. You must call removeView() Please help.
public View getView(int position, View convertView, ViewGroup parent) {
LinearLayout ll = new LinearLayout(mContext);
ll.setId(position*9);
ll.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
int padding = (int) Math.round( 2.5*density);
ll.setPadding(padding, padding, padding, padding);
ImageView iv = new ImageView(mContext);
iv= chanelViewArrayList.get(position).snapshotImageView;
iv.setLayoutParams(new LayoutParams(Math.round(100*density),Math.round(100*density)));
iv.setId(position);
ll.removeAllViews();
ll.addView(iv);
return ll;
}