【发布时间】:2014-04-30 20:25:16
【问题描述】:
我在 Google 和 stackoverflow 上进行了搜索,浏览了所有问题和答案,但似乎没有什么对我有用。广告仍然显示在我的活动底部。 有谁知道我做错了什么?
public class MainActivity extends Activity {
String[] myItems;
RelativeLayout RelLay;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.menu);
RelLay = (RelativeLayout) findViewById (R.id.RelLay);
AdView ad = (AdView) findViewById(R.id.ad);
AdView adView = new AdView(this.getApplicationContext());
adView = new AdView(this);
adView.setAdSize(AdSize.SMART_BANNER);
adView.setAdUnitId("ca-app-pub-5045823047142424/5834743995");
RelLay.addView(adView, 0);
AdRequest adRequest = new AdRequest.Builder().build();
adView.loadAd(adRequest);
populateListView();
registerClickCallBack();
}
我的 xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/RelLay"
android:layout_width="fill_parent"
android:layout_height="match_parent" >
<ListView
android:id="@+id/listView"
android:layout_width="wrap_content"
android:layout_height="400dp"
android:layout_alignParentTop="true" >
</ListView>
<com.google.android.gms.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
ads:adSize="SMART_BANNER"
android:layout_below="@id/listView"
ads:adUnitId="ca-app-pub-5045823047142424/5834743995"
android:layout_weight="1"/>
</RelativeLayout>
当它出现在活动的顶部时,我收到如下错误:
04-30 16:17:57.787:E/eglCodecCommon(1468):
**** 错误未知类型 0x0 (glSizeof,72)
glUtilsParamSize: 未知参数 0x00000b44
glUtilsParamSize: 未知参数 0x00000bd0
**** 错误未知类型 0x0 (glSizeof,72)
glUtilsParamSize: 未知参数 0x00000b44
glUtilsParamSize: 未知参数 0x00000bd0
**** 错误未知类型 0x0 (glSizeof,72)
【问题讨论】: