-1
您有任何想法如何在表面視圖中包含Admob橫幅?我嘗試了很多小時,但沒有奏效。Admob橫幅在表面視圖上
您有任何想法如何在表面視圖中包含Admob橫幅?我嘗試了很多小時,但沒有奏效。Admob橫幅在表面視圖上
嘗試這樣的事情
Your_activity.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:layout_width="match_parent"
android:layout_height="match_parent">
<SurfaceView android:layout_width="match_parent"
android:layout_height="match_parent"/>
<com.google.android.gms.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="MY_AD_UNIT_ID"
android:layout_align_parrent_bottom="true"
ads:adSize="BANNER"/>
</RelativeLayout >
或者創建代碼AdMob的橫幅。請參閱https://developers.google.com/mobile-ads-sdk/docs/admob/fundamentals的更多內容
您能否請添加您已經嘗試過的代碼? – donfuxx
感謝您的回答! :)我沒有代碼了。對不起 – user2399229
認爲您應該嘗試將您的SurfaceView包裝到某個容器並添加標準的AdMob橫幅 – alekz