gpt4 book ai didi

android - CardView 内的 ImageView CardView 内

转载 作者:行者123 更新时间:2023-11-29 18:28:13 29 4
gpt4 key购买 nike

这是代码 fragment :

<androidx.cardview.widget.CardView
android:id="@+id/new_main_store_image_CV"
android:layout_width="@dimen/_250sdp"
android:layout_height="@dimen/_250sdp"
app:cardElevation="@dimen/_5sdp"
app:cardCornerRadius="@dimen/_15sdp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/new_main_store_label_TV"
app:layout_constraintVertical_bias="0.15">

<androidx.cardview.widget.CardView
android:id="@+id/new_main_store_image_CVCV"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:cardCornerRadius="@dimen/_15sdp"
app:cardElevation="@dimen/_5sdp"
android:padding="@dimen/_5sdp">

<ImageView
android:id="@+id/new_main_store_image_IV"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/_5sdp"
android:scaleType="fitXY"/>

</androidx.cardview.widget.CardView>

</androidx.cardview.widget.CardView>

这是最终结果:

enter image description here

我想要的是嵌套圆角半径的外观,它也会影响 ImageView。我已经为两个卡片 View 提供了 cornerRadius 属性,但它仅对父卡片 View 可见,对嵌套卡片 View 不可见。

最佳答案

不要使用卡片 View ,而是按照此操作。

在 app build.gradle 文件中添加这些行。

implementation 'com.makeramen:roundedimageview:2.3.0'
implementation 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'

然后创建您的自定义 ImageView 类。

import android.content.Context;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;

import androidx.annotation.NonNull;

import com.makeramen.roundedimageview.RoundedImageView;
import com.testapp.application.instance.GlideApp;

import java.io.File;

public class GlideRoundedImageView extends RoundedImageView {
public GlideRoundedImageView(Context context) {
this(context, null);
}

public GlideRoundedImageView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}

public GlideRoundedImageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}

public void setImageUrl(String imageUrl) {
if (imageUrl == null)
return;
GlideApp.with(getContext())
.load(imageUrl)
// .placeholder(R.drawable.profile_default)
.into(this);
}

public void setImageUrl(String imageUrl, @NonNull Drawable drawable) {
if (imageUrl == null)
return;
GlideApp.with(getContext())
.load(imageUrl)
.placeholder(drawable)
.error(drawable)
.fallback(drawable)
.into(this);
}

public void setImageFile(File file) {
GlideApp.with(getContext())
.load(file)
// .placeholder(R.drawable.profile_default)
.into(this);
}
}

然后在您的 XML 中添加这个。

<com.testapp.GlideRoundedImageView
android:id="@+id/ivRounded"
android:layout_width="match_parent"
android:layout_height="70dp"
android:layout_gravity="end"
android:scaleType="fitXY"
android:src="@drawable/placeholder_image"
app:riv_corner_radius="@dimen/five_dp" />

然后在您的 Activity 或 fragment 中添加它。

        binding.ivRounded.setImageUrl("imageUrl", getResources().getDrawable(R.drawable.placeholder_image));

关于android - CardView 内的 ImageView CardView 内,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57752164/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com