如何在 Canvas 上绘制 AdMob 横幅?
How to draw AdMob Banner on Canvas?
是否可以通过某种方式在 canvas 的自定义视图上绘制 AdMob AdView 横幅?
这张图很清楚
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();
}
大致如下:
<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。
是否可以通过某种方式在 canvas 的自定义视图上绘制 AdMob AdView 横幅? 这张图很清楚
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();
}
大致如下:
<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。