我在我的应用中使用revmob横幅广告。我面临的问题是: 在横幅显示在布局视图底部"黑色条显示"当我点击它隐藏或从视图中删除。我不知道为什么。请告诉我如何解决这个问题。
代码就是这个
RevMobBanner banner;
void showBanner() {
revmob = RevMob.start(this); // RevMob Media ID configured in the AndroidManifest.xml file
banner = revmob.createBanner(this);
runOnUiThread(new Runnable() {
@Override
public void run() {
ViewGroup view = (ViewGroup) findViewById(R.id.adLayout);
view.addView(banner);
}
});
}
Xml文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:id="@+id/adLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:visibility="visible">
</RelativeLayout>
</RelativeLayout>
showbanner()//从活动中调用
感谢。