gpt4 book ai didi

android - 如何从 StaggeredGridLayoutManager 中找到单元格宽度?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:56:31 24 4
gpt4 key购买 nike

我在 RecyclerView 中有一个 StaggeredGrid,我正尝试在 onBindViewHolder 中动态设置图像高度。我认为 StaggeredGrid 应该自动处理所有这些,所以我设置了 android:layout_width="match_parentandroid:scaleType="fitStart ImageView,但图像周围有很多空隙。

由于 StaggeredGrid 不符合要求,我试图通过在 onBindViewHolder 中动态定义图像高度来帮助它。我提前有了图像的宽度和高度,但网格的单元格宽度不可用。我尝试了 holder.cardView.getLayoutParams().widthgetMeasuredWidth(),但它们都返回零或小数字。我知道还有其他地方可以使用单元格宽度,但我确实需要在 onBindViewHolder 事件中设置和调整图像。

关于如何利用 StaggeredGrid 实现这一目标的任何想法?感谢任何建议或经验!

在我的 Activity 中是这样的:

mLayoutManager = new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL);
mRecyclerView.setLayoutManager(mLayoutManager);

在我的适配器中:

@Override
public void onBindViewHolder(MyAdapter.MyViewHolder holder, int position) {
MyModel item = mData.get(position);

int imageWidth = item.getFeatured_image().getWidth();
int imageHeight = item.getFeatured_image().getHeight();
int cellWidth = 540; // <==== how to find dynamically??!!

ViewGroup.LayoutParams imageLayoutParams = holder.thumbnailImageView.getLayoutParams();
imageLayoutParams.width = cellWidth;
imageLayoutParams.height = imageHeight * cellWidth / imageWidth;
holder.thumbnailImageView.setLayoutParams(imageLayoutParams);

MediaHelper.displayImage(item, holder.thumbnailImageView);
}

在我的布局中:

<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/row_my_card"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
card_view:cardCornerRadius="2dp">

<ImageView
android:id="@+id/row_my_thumbnail_image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:scaleType="fitStart" />

<TextView
android:id="@+id/row_my_title_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="#CCFFFFFF"
android:textStyle="bold"
android:padding="5dp" />
</android.support.v7.widget.CardView>

我也尝试添加这个确实给我单元格宽度的东西,但是 onGlobalLayout 事件是在 onBindViewHolder 事件中设置和调整图像后触发的,所以太晚了。

@Override
public MyAdapter.MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
// create a new view
final View view = LayoutInflater.from(parent.getContext())
.inflate(R.layout.row_my_post, parent, false);

final MyViewHolder viewHolder = new MyViewHolder(view);

ViewTreeObserver viewTreeObserver = view.getViewTreeObserver();
if (viewTreeObserver.isAlive()) {
viewTreeObserver.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
view.getViewTreeObserver().removeOnGlobalLayoutListener(this);
int viewWidth = view.getWidth();
int viewHeight = view.getHeight();
}
});
}

return viewHolder;
}

这里是由于各种图像尺寸而随机产生的间隙。我想要的是所有图像都是单元格的宽度,并让图像和单元格的高度动态调整:

enter image description here

最佳答案

试试这个:- 在你的 ImageView 中添加这个 --> android:adjustViewBounds="true"

<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/row_my_card"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
card_view:cardCornerRadius="2dp">

<ImageView
android:id="@+id/row_my_thumbnail_image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:adjustViewBounds="true"/>

<TextView
android:id="@+id/row_my_title_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="#CCFFFFFF"
android:textStyle="bold"
android:padding="5dp" />
</android.support.v7.widget.CardView>

关于android - 如何从 StaggeredGridLayoutManager 中找到单元格宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31160512/

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