我的自定义SurfaceView上的Admob

时间:2013-09-17 05:55:29

标签: android admob relativelayout surfaceview

我创建了一个自定义SurfaceView,现在想要将admob放在表面视图上。不低于或高于,因为它减少了屏幕尺寸。我在这里发现了很多问题但是所有问题都是通过将SurfaceView放在admob视图的下方或上方来解决的。但是我想把adob放在SurfaceView上。

我的活动的XML代码

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".SecondActivity" >

<com.scratchview.ScratchView
    xmlns:wsv="http://schemas.android.com/apk/res-auto"
    android:id="@+id/scratch_view_background"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    wsv:antiAlias="true"
    wsv:revealSize="25dp"
    wsv:scratchable="false" />

<com.scratchview.ScratchView
    xmlns:wsv="http://schemas.android.com/apk/res-auto"
    android:id="@+id/scratch_view"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    wsv:antiAlias="true"
    wsv:revealSize="25dp"
    wsv:scratchable="true" />

<com.google.ads.AdView
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:gravity="top"
    ads:adSize="SMART_BANNER"
    ads:adUnitId="@string/admob_id"
    ads:loadAdOnCreate="true" />

</RelativeLayout>

注意:我尝试过将Admob置于下方和上方,它正常工作。我需要将admob放到SurfaceView

0 个答案:

没有答案