How to add Admob AdView in top view of ArrayAdapter

315 Views Asked by At

i create a ArrayAdapter class to list all item in view, but i want to add a Admob Adview in top of View but not working. Pls help me.

My getView function is:

    @Override
public View getView(int position, View convertView, ViewGroup parent) {
    // TODO Auto-generated method stub
    LayoutInflater inflater = (LayoutInflater) context
            .getSystemService(context.LAYOUT_INFLATER_SERVICE);
    View rowView = inflater.inflate(R.layout.news_layout, parent, false);
    ImageView iv = (ImageView)rowView.findViewById(R.id.ivIcon);
    TextView tv = (TextView)rowView.findViewById(R.id.tvNews);
    tv.setText(items.get(position).getTitle());
    if(position==0){
        AdView adView = new AdView((Activity)context, AdSize.BANNER,"a152bfd02492f0b");
        adView.loadAd(new AdRequest());
        LinearLayout layout = (LinearLayout)rowView.findViewById(R.id.main_layout);
        layout.addView(adView);
    }

    iv.setTag((String)items.get(position).getLink_img());
    new LoadImageAsyntask().execute(iv);
    return rowView;
}
1

There are 1 best solutions below

4
On

As Szymon rightly says - do NOT try and put an AdView into an ArrayAdapter. You are just asking for pain. Rethink your application.

ArrayAdapters are for lists of similar items. The AdView should be placed above or below the ListView holding the ArrayAdapter.