是否有可能以某种方式在画布上的自定义视图上绘制AdMob AdView Banner? 清楚地显示在这个图中
http://rghost.ru/8Tpt5bpFR/image.png http://rghost.ru/88lvrGVfB/image.png
在这个地方画画
@Override
protected void onDraw(Canvas holst)
{
super.onDraw(holst);
holst.drawRect(0,0,w,h, whitekraska);//прямоугольник на весь экран
holst.drawBitmap(bottom,0,h-140, kraska1); //цветной растянутый прямоугольник
**DrawAdMobBanner(),x,y;**
invalidate();
}
答案 0 :(得分:0)
有些事情:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F00"/>
<fragment android:name="com.mypackage.myapplication.fragment.AdFragment"
android:id="@+id/ad_fragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="100dp"/>
</RelativeLayout>
将视图替换为您的自定义视图,obv。