android Admob -点击原生广告无效

gwo2fgha  于 2023-06-20  发布在  Android
关注(0)|答案(1)|浏览(247)

我正在尝试在“回收者”视图中显示广告。
广告本身显示正确,但当我点击它时,什么也没有发生。
显示广告的代码:

  1. class AdViewHolder(val binding: NativeAdViewBinding): RecyclerView.ViewHolder(binding.root) {
  2. fun bind() {
  3. val adLoader = AdLoader.Builder(binding.root.context, "ca-app-pub-3940256099942544/2247696110")
  4. .forNativeAd { ad : NativeAd ->
  5. with(binding) {
  6. imageView.setImageDrawable(ad.icon?.drawable)
  7. titleTextView.text = ad.headline
  8. ratingBar.rating = ad.starRating?.toFloat() ?: 0f
  9. storeTextView.text = ad.store
  10. actionButton.text = ad.callToAction
  11. root.setNativeAd(ad)
  12. root.visibility = View.VISIBLE
  13. }
  14. }
  15. .withAdListener(object : AdListener() {
  16. override fun onAdFailedToLoad(adError: LoadAdError) {
  17. Napier.d("Ad Error: $adError")
  18. }
  19. })
  20. .build()
  21. adLoader.loadAd(AdRequest.Builder().build())
  22. }
  23. }

我的xml文件native_ad_view.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <com.google.android.gms.ads.nativead.NativeAdView
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. android:layout_height="wrap_content"
  6. android:layout_width="match_parent"
  7. android:visibility="gone">
  8. <androidx.constraintlayout.widget.ConstraintLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:background="@drawable/route_item_background"
  12. android:clickable="true"
  13. android:foreground="?android:attr/selectableItemBackground">
  14. ...
  15. </androidx.constraintlayout.widget.ConstraintLayout>
  16. </com.google.android.gms.ads.nativead.NativeAdView>

我尝试添加方法:

  1. actionButton.setOnClickListener {
  2. ad.performClick(Bundle())
  3. }

但什么都没变

jm81lzqq

jm81lzqq1#

我解决了这个问题。我需要添加这行代码

  1. (root as NativeAdView).callToActionView = root

相关问题