Android RecyclerView 加载图片列表,图片宽高问题

RecyclerView 加载图片列表的时候,使图片的宽度为手机屏幕宽度,高度自适应

adapter item布局

 <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scaleType="fitXY"
        android:adjustViewBounds="true"/>

在adapter里面设置图片的宽高

int screenWidth = ((FragmentActivity) mContext).getWindowManager().getDefaultDisplay().getWidth();
        ViewGroup.LayoutParams lp = ivImg.getLayoutParams();
        lp.height = ViewGroup.LayoutParams.WRAP_CONTENT;
        lp.width = screenWidth;
        ivImg.setLayoutParams(lp);

        ivImg.setMaxWidth(screenWidth);
        ivImg.setMaxHeight(screenWidth * 5); //这里设置图片最大的高度
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。