2022-10-23

【Kotlin】AdMob(API20(含)↑) 自適應橫幅 Adaptive Banner, 適 Android R(API30↑)

參考資料 ----


Smart Banner 將停用,全面以 Adaptive Banner 取代!

因應 Java 的改版, AdMob 也跟著更新,並改變了 取得 AdSize 的寫法

app 層級build.gradle 要使用最新版的 play-services-ads,目前(2022.10.23) 是 21.3.0

  1.  
  2. ...
  3. ...
  4. dependencies {
  5. ...
  6. ...
  7. implementation 'com.google.android.gms:play-services-ads:21.3.0'
  8. ...
  9. ...
  10. }
  11.  


strings.xml
  1.  
  2. ...
  3. ...
  4.  
  5. < 測試的 AdMob app id -->
  6. <string name="app_id">ca-app-pub-3940256099942544~3347511713</string>
  7. < 測試的 AdMob 橫幅 id -->
  8. <string name="banner">ca-app-pub-3940256099942544/6300978111</string>
  9.  
  10. ...
  11. ...
  12.  


AndroidManifest.xml
  1.  
  2. <application
  3. ...
  4. ... >
  5.  
  6. <!-- App ID -->
  7. <meta-data
  8. android:name="com.google.android.gms.ads.APPLICATION_ID"
  9. android:value="@string/app_id" />
  10. ...
  11. ...
  12. <activity
  13. ...
  14. ...
  15.  


原本的 layout.xml 是在佈局中直接放一個 adview,因為要動態決定 adview 的尺寸,就不這麼做了。
  1.  
  2. ...
  3. ...
  4.  
  5. <com.google.android.gms.ads.adview
  6. ads:adsize="SMART_BANNER"
  7. ads:adunitid="@string/banner_ad_unit_id"
  8. android:id="@+id/adView"
  9. android:layout_alignparentbottom="true"
  10. android:layout_alignparentend="true"
  11. android:layout_alignparentleft="true"
  12. android:layout_alignparentright="true"
  13. android:layout_alignparentstart="true"
  14. android:layout_height="wrap_content"
  15. android:layout_width="match_parent" />
  16.  
  17. ...
  18. ...
  19.  

改成以 framelayout 做為 AdView 的容器(container)
  1.  
  2. ...
  3. ...
  4.  
  5. <!-- 只要是 ViewGroup 層級皆可,ex:FrameLayout...,視您的需要自行變化 -->
  6. <LinearLayout
  7. android:id="@+id/ad_view_container"
  8. android:layout_alignParentBottom="true"
  9. android:layout_centerInParent="true"
  10. android:layout_height="wrap_content"
  11. android:layout_width="match_parent" />
  12. ...
  13. ...
  14.  


MainActivity.kt
  1.  
  2. ...
  3. ...
  4.  
  5. class MainActivity : AppCompatActivity()
  6. {
  7. private lateinit var adView: AdView
  8.  
  9. override fun onCreate(savedInstanceState: Bundle?)
  10. {
  11. super.onCreate(savedInstanceState)
  12. setContentView(R.layout.activity_main)
  13.  
  14. MobileAds.initialize(this) { }
  15.  
  16. // 程式執行時,取得當時的螢幕寬度
  17. // 再動態決定 adView 的尺寸
  18. adView = AdView(this)
  19. ad_view_container.addView(adView)
  20. loadBanner()
  21.  
  22. }
  23.  
  24.  
  25. // 取得螢幕尺寸
  26. private val adSize: AdSize
  27. get()
  28. {
  29. val iScreenWidth = getScreenWidth()
  30. val fDensity = getDensity()
  31. val adWidth = (iScreenWidth / fDensity).toInt()
  32. return AdSize.getCurrentOrientationAnchoredAdaptiveBannerAdSize(this, adWidth)
  33. }
  34. private fun getScreenWidth(): Int {
  35. val wm = application.getSystemService(WINDOW_SERVICE) as WindowManager
  36. return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
  37. val windowMetrics = wm.currentWindowMetrics
  38. windowMetrics.bounds.width()
  39. } else {
  40. val displayMetrics = DisplayMetrics()
  41. wm.defaultDisplay.getMetrics(displayMetrics)
  42. displayMetrics.widthPixels
  43. }
  44. }
  45.  
  46. private fun getDensity(): Float {
  47. return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
  48. val config: Configuration = application.resources.configuration
  49. config.densityDpi / 160f
  50. } else {
  51. val metrics = application.resources.displayMetrics
  52. metrics.density
  53. }
  54. }
  55.  
  56. // 載入橫幅
  57. private fun loadBanner()
  58. {
  59. adView.adUnitId = getString(R.string.banner)
  60. // adView.adSize = adSize
  61. mAdView.setAdSize(adSize)
  62. val adRequest = AdRequest.Builder().build()
  63. adView.loadAd(adRequest)
  64. }
  65.  


相關筆記 ----


沒有留言:

張貼留言