如何给 recyclerview 动态约束?
How can I give the recyclerview dynamically constraint?
我有一个带有 recyclerview 和 adView 的布局。如果广告加载,它看起来不错,但如果没有加载,就会有很大的差距。如果广告没有加载,recyclerview 不会有间隙,我该怎么办?
布局:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".fragments.listEvent.ListEventFragment">
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="4dp"
app:adSize="SMART_BANNER"
app:adUnitId="ca-app-pub-3940256099942544/6300978111"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/adView" />
</androidx.constraintlayout.widget.ConstraintLayout>
您可以检查广告加载是否失败,将可见性设置为消失
override fun onAdFailedToLoad(adError: LoadAdError) {
adView.visibility = View.GONE
}
或者您可以在 XML 文件中默认将可见性设置为消失。成功加载广告后,您可以使其可见。
在XML中:
android:visibility="gone"
代码中:
adView.visibility = View.VISIBLE
我有一个带有 recyclerview 和 adView 的布局。如果广告加载,它看起来不错,但如果没有加载,就会有很大的差距。如果广告没有加载,recyclerview 不会有间隙,我该怎么办?
布局:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".fragments.listEvent.ListEventFragment">
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="4dp"
app:adSize="SMART_BANNER"
app:adUnitId="ca-app-pub-3940256099942544/6300978111"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/adView" />
</androidx.constraintlayout.widget.ConstraintLayout>
您可以检查广告加载是否失败,将可见性设置为消失
override fun onAdFailedToLoad(adError: LoadAdError) {
adView.visibility = View.GONE
}
或者您可以在 XML 文件中默认将可见性设置为消失。成功加载广告后,您可以使其可见。
在XML中:
android:visibility="gone"
代码中:
adView.visibility = View.VISIBLE