gpt4 book ai didi

android - ImageView in LinearLayout in Scrollview with CardStackView and Picasso 图片不显示

转载 作者:行者123 更新时间:2023-12-02 12:23:19 26 4
gpt4 key购买 nike

我正在开发一个 Android 应用程序。

我正在使用“com.yuyakaido.android:card-stack-view:2.3.4”作为卡片库。

ImageView在CardView中的ScrollView中的LinearLayout中。

我想要做的是在第一次加载卡时,按照下图将图像适合卡的大小。

enter image description here

如果你向下滚动,它会显示如下图所示的一些文本

enter image description here

我使用 Picasso 将图像适配到 ImageView 但图像不显示。

这是具有 CardStackView 的 fragment

override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
return inflater.inflate(R.layout.fragment_card_stack, container, false)
}

override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
initCardStackView()
}

private fun initCardStackView() {
manager = CardStackLayoutManager(context)
manager.setCanScrollVertical(false)
manager.setSwipeableMethod(SwipeableMethod.Manual)
adapter = CardStackAdapter(context, createDummyProfiles())
cardStackView.layoutManager = manager
cardStackView.adapter = adapter
cardStackView.itemAnimator = DefaultItemAnimator()
}

这是 fragment 布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<com.yuyakaido.android.cardstackview.CardStackView
android:id="@+id/cardStackView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="80dp"
android:clipToPadding="false"/>

</LinearLayout>

这是 CardStackAdapter,在这里我用 Piccaso 裁剪图像并将其适合 ImageView

class CardStackAdapter(private var context: Context?, private var movies: MutableList<Movies>) :
RecyclerView.Adapter<CardStackAdapter.ViewHolder>() {

class ViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {

}

override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
val inflater = LayoutInflater.from(parent.context)
return ViewHolder(inflater.inflate(R.layout.card_view, parent, false))
}

override fun onBindViewHolder(holder: ViewHolder, position: Int) {
Picasso.get().load(R.drawable.person3).fit().centerCrop().into(holder.itemView.imageView)
}

override fun getItemCount(): Int {
return movies.size
}

fun setItems(items: MutableList<Profile>) {
this.movies = items
}
}

这是 card_view,它是 CardStackAdapter 的 viewHolder 的布局

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/cardView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/selectableItemBackground"
android:foreground="?attr/selectableItemBackground"
app:cardBackgroundColor="@android:color/white"
app:cardCornerRadius="18dp"
app:cardPreventCornerOverlap="false"
app:cardUseCompatPadding="true">

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/lipsum"/>

</LinearLayout>

</ScrollView>

</androidx.cardview.widget.CardView>

当我运行应用程序时,我得到的卡片没有图像,只有如下图所示的文本

enter image description here

如何在加载卡片时以卡片大小显示图像?



------------------------更新-------------------- ------

** 注意:图像将从服务器而非本地可绘制对象中检索。我只是将本地可绘制对象中的图像用于测试目的。

我不确定为什么图像不显示。但是如果我按照下面的代码设置 imageView 的 layoutParams 的高度和宽度,那么图像就会显示出来。

override fun onBindViewHolder(holder: ViewHolder, position: Int) {
holder.itemView.imageView.layoutParams.height = 1918
holder.itemView.imageView.layoutParams.width = 970
Picasso.get().load(R.drawable.person3).fit().centerCrop().into(holder.itemView.imageView)
}

所以,现在的问题是我是否可以将 ImageView 的高度和宽度设置为等于 ScrollView(imageView 的父级的父级)的高度和宽度,或者 CardView (imageView's parent's parent's parent) NOT LinearLayout (parent) 因为LinearLayout的高度应该是“wrap_content”。



------------------------更新-------------------- ------

看起来你的解决方案是基于图像的高度和宽度,但我需要将图像放入 CardView 或 ScrollView

这是我的 onBindViewHolder 代码。我刚刚删除了毕加索。

override fun onBindViewHolder(holder: ViewHolder, position: Int) {
holder.itemView.imageView.setImageResource(R.drawable.person2)
}

这是我的 CardView 布局

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/cardView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/selectableItemBackground"
android:foreground="?attr/selectableItemBackground"
app:cardCornerRadius="18dp"
app:cardPreventCornerOverlap="false"
app:cardUseCompatPadding="true">

<androidx.core.widget.NestedScrollView
android:fillViewport="true"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<ImageView
android:id="@+id/imageView"
android:src="@drawable/person2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="centerCrop"/>

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/lipsum"/>

</LinearLayout>

</androidx.core.widget.NestedScrollView>

</androidx.cardview.widget.CardView>

这是我在 AVD 上得到的。图像没有填满 CardView 的底部,因为它会根据其高度和宽度进行缩放?

enter image description here

最佳答案

我从您更新的问题中了解到,您需要将 ImageView 填充到 CardView 高度,并且 textView 将在滚动后可见。这对于 ScrollView 来说似乎很棘手,因为我们需要以某种方式动态设置高度 match_parent 不适用于 ScrollView
我在下面做了一个解决方案,看看这个锻炼是否适合你。创建自定义 ImageView 并在 CardView 中使用。

class FillImageView : AppCompatImageView {
constructor(context: Context?) : super(context!!) {}
constructor(context: Context?, attrs: AttributeSet?) : super(context!!, attrs) {}
constructor(context: Context?, attrs: AttributeSet?, defStyleAttr: Int) : super(context!!, attrs, defStyleAttr) {}

override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec)
val parentWidth = MeasureSpec.getSize(widthMeasureSpec)
setMeasuredDimension(parentWidth, (parent.parent as View).measuredHeight)
}
}

并在下面的 CardView 中添加 NestedScrolllView

<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:fillViewport="true"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content">
<com.ace.myapplication.FillImageView
android:layout_width="match_parent"
android:src="@drawable/hello"
android:adjustViewBounds="true"
android:layout_height="match_parent"
android:scaleType="centerCrop"/>
<TextView
android:layout_width="match_parent"
android:textSize="23sp"
android:padding="10dp"
android:layout_height="wrap_content"/>
</LinearLayout>
</androidx.core.widget.NestedScrollView>

PS- 使用 (parent.parent as View).measuredHeight 设置高度可能是一个丑陋的解决方案,但这就是我现在所能做的。喜欢为此看到一些优雅的解决方案。我还没有用 CardStackView 测试它。

更新现在 RecyclerView 的问题是在设置适配器后绘制的项目,我们需要监听此后绘制的项目的 layoutManager 回调。解决此问题而不使其变得复杂的一种方法 将 cadStackView 高度设置为 imageView。请参阅下面的代码,仅添加基本代码。

class CardStackAdapter(val stackViewHeight:Int, private var movies: MutableList<Moview>) :
RecyclerView.Adapter<CardStackAdapter.ViewHolder>() {

inner class ViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
val imageView:ImageView = itemView.findViewById(R.id.imageView)
init {
imageView.layoutParams.height= stackViewHeight
}
}
}

现在在你的 fragment 中

cardStackView.post {
initCardStackView()
}

并如下更改 initCardStackView 中的 dapter 创建。此外,您不必将上下文传递给适配器,每个 View 都有一个附加到它的上下文。在这种情况下也不要使用 FillImageView 在 xml 布局中使用普通的 ImageView

// Since you are using android:padding it will be same for all sides
val cardHeight=cardStackView.height- (2*cardStackView.paddingTop)
val adapter = CardStackAdapter(cardHeight, createDummyProfiles())

关于android - ImageView in LinearLayout in Scrollview with CardStackView and Picasso 图片不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63811820/

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