我为 recycleView 创建了一个布局,当我在约束布局中添加图像时,顶部总是有一个默认边距
I have created a layout for recycleView, when I am adding the image inside constraint layout, there is always a default margin in the top
我已经为 recycleView 创建了一个布局,当我在约束布局中添加图像时,顶部总是有一个默认边距
这是我的代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="300dp"
android:layout_marginTop="10dp"
android:layout_marginEnd="20dp"
android:layout_marginStart="20dp"
android:layout_marginBottom="10dp"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:background="@drawable/rv_bg">
<ImageView
android:layout_width="match_parent"
android:layout_height="200dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:src="@drawable/services"
android:scaleType="centerCrop"/>
</androidx.constraintlayout.widget.ConstraintLayout>
这里我附上布局的截图,如果有人有解决方案,请分享
Screenshot
我找到了这个问题的解决方案,如果你面对这个问题,而不是 ImageView,你可以使用这个名为 RoundedImageView 的库
Github Link: https://github.com/vinc3m1/RoundedImageView
将依赖项添加到您的应用级 Gradle 模块
实施 'com.makeramen:roundedimageview:2.3.0'
样本XML文件
<com.makeramen.roundedimageview.RoundedImageView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/image"
android:src="@drawable/services"
android:scaleType="centerCrop"
app:riv_corner_radius_top_left="10dp"
app:riv_corner_radius_top_right="10dp"
app:riv_mutate_background="false"
app:riv_oval="false"
android:layout_height="200dp"
android:layout_width="match_parent"
tools:ignore="MissingConstraints" />
这个库帮助我解决了我的问题,如果你也面临同样的问题,请检查一次。
我已经为 recycleView 创建了一个布局,当我在约束布局中添加图像时,顶部总是有一个默认边距
这是我的代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="300dp"
android:layout_marginTop="10dp"
android:layout_marginEnd="20dp"
android:layout_marginStart="20dp"
android:layout_marginBottom="10dp"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:background="@drawable/rv_bg">
<ImageView
android:layout_width="match_parent"
android:layout_height="200dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:src="@drawable/services"
android:scaleType="centerCrop"/>
</androidx.constraintlayout.widget.ConstraintLayout>
这里我附上布局的截图,如果有人有解决方案,请分享
Screenshot
我找到了这个问题的解决方案,如果你面对这个问题,而不是 ImageView,你可以使用这个名为 RoundedImageView 的库
Github Link: https://github.com/vinc3m1/RoundedImageView
将依赖项添加到您的应用级 Gradle 模块 实施 'com.makeramen:roundedimageview:2.3.0'
样本XML文件
<com.makeramen.roundedimageview.RoundedImageView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/image"
android:src="@drawable/services"
android:scaleType="centerCrop"
app:riv_corner_radius_top_left="10dp"
app:riv_corner_radius_top_right="10dp"
app:riv_mutate_background="false"
app:riv_oval="false"
android:layout_height="200dp"
android:layout_width="match_parent"
tools:ignore="MissingConstraints" />
这个库帮助我解决了我的问题,如果你也面临同样的问题,请检查一次。