热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

ImageView大小未正确显示-ImageViewsizeisnotdisplayedcorrectly

ImhavingaproblemofdisplayingImageViewswiththecorrectsize.AlmostallthepoststhatIve

I'm having a problem of displaying ImageViews with the correct size. Almost all the posts that I've read through involves ImageViews that are created in the layout file. However in my case, I'm creating ImageViews programmatically.

我有一个显示正确大小的ImageViews的问题。我读过的几乎所有帖子都涉及在布局文件中创建的ImageView。但是在我的情况下,我是以编程方式创建ImageViews。

I'm trying to display all images from a particular folder located in the storage. The bitmaps retrieved will be placed in ImageViews which are contained within a GridView.

我正在尝试显示位于存储中的特定文件夹中的所有图像。检索到的位图将放置在GridView中,ImageView包含在GridView中。

Here's my code:

这是我的代码:

//pass an array containing all images paths to adapter
imageGrid.setAdapter(new GridViewAdapter(getActivity(), FilePathStrings));

part of GridVewAdapter code:

GridVewAdapter代码的一部分:

public View getView(int position, View convertView, ViewGroup parent) {
            ImageView imageView;

            if(cOnvertView== null){
                imageView = new ImageView(mContext);
                imageView.setLayoutParams(new GridView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
                imageView.setScaleType(ImageView.ScaleType.FIT_XY);
                imageView.setPadding(5, 5, 5, 5);
                imageView.setAdjustViewBounds(true);

            }else{
                imageView = (ImageView) convertView;
            }

            imageView.setTag(filepath[position]);
            new LoadImages(imageView).execute();

            return imageView;
        }

AsyncTask to retrieve bitmaps:

AsyncTask检索位图:

private class LoadImages extends AsyncTask {

        private ImageView imgView;
        private String path;

        private LoadImages(ImageView imgView) {
            this.imgView = imgView;
            this.path = imgView.getTag().toString();
        }

        @Override
        protected Bitmap doInBackground(Object... params) {
            Bitmap bitmap = null;

            BitmapFactory.Options bmOptiOns= new BitmapFactory.Options();
            bmOptions.inJustDecodeBounds = false;
            bmOptions.inSampleSize = 6;

            bitmap = BitmapFactory.decodeFile(path, bmOptions);
            try {

                int dimension = getSquareCropDimensionForBitmap(bitmap);
                bitmap = ThumbnailUtils.extractThumbnail(bitmap, dimension, dimension);

            }catch (Exception e) {
                e.printStackTrace();
            }

            return bitmap;
        }

        @Override
        protected void onPostExecute(Bitmap result) {

            if (!imgView.getTag().toString().equals(path)) {
                return;
            }

            if(result != null && imgView != null){
                imgView.setVisibility(View.VISIBLE);
                imgView.setImageBitmap(result);

            }else{
                imgView.setVisibility(View.GONE);
            }
        }
    }

Method to get equal dimensions so bitmaps will be displayed as squares:

获得相同尺寸的方法使位图显示为正方形:

private int getSquareCropDimensionForBitmap(Bitmap bitmap) {

           int dimension;
            //If the bitmap is wider than it is height then use the height as the square crop dimension

            if (bitmap.getWidth() >= bitmap.getHeight())    {
                dimension = bitmap.getHeight();
            }
            //If the bitmap is taller than it is width use the width as the square crop dimension

           else    {
                dimension = bitmap.getWidth();
            }
            return dimension;

    }

GridView in the layout file:

布局文件中的GridView:

    


The result that I've gotten:

结果我得到了:

imgview_result

The circled thin "lines" are actually the ImageViews displayed.

带圆圈的细线“实际上是显示的ImageViews”。

Any help is very much appreciated. Thank you in advance!

很感谢任何形式的帮助。先感谢您!

2 个解决方案

#1


0  


#2


0  

I have other views above the GridView so I can't set its height to fill_parent/match_parent in the .xml file as it will affect the views above.

我在GridView上面有其他视图,因此我无法在.xml文件中将其高度设置为fill_parent / match_parent,因为它会影响上面的视图。

The solution to my problem is to set GridView's height and width programmatically.

我的问题的解决方案是以编程方式设置GridView的高度和宽度。

Replace:

imageView.setLayoutParams(new GridView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));

With this:

imageView.setLayoutParams(new GridView.LayoutParams(int height, int width));

Explanation:

Grid View doc

网格视图文档

Anyone who has a better answer, please post it :)

谁有更好的答案,请发布:)


推荐阅读
  • 本文探讨了资源访问的学习路径与方法,旨在帮助学习者更高效地获取和利用各类资源。通过分析不同资源的特点和应用场景,提出了多种实用的学习策略和技术手段,为学习者提供了系统的指导和建议。 ... [详细]
  • 本文介绍了一种自定义的Android圆形进度条视图,支持在进度条上显示数字,并在圆心位置展示文字内容。通过自定义绘图和组件组合的方式实现,详细展示了自定义View的开发流程和关键技术点。示例代码和效果展示将在文章末尾提供。 ... [详细]
  • 使用 ListView 浏览安卓系统中的回收站文件 ... [详细]
  • 在处理 XML 数据时,如果需要解析 `` 标签的内容,可以采用 Pull 解析方法。Pull 解析是一种高效的 XML 解析方式,适用于流式数据处理。具体实现中,可以通过 Java 的 `XmlPullParser` 或其他类似的库来逐步读取和解析 XML 文档中的 `` 元素。这样不仅能够提高解析效率,还能减少内存占用。本文将详细介绍如何使用 Pull 解析方法来提取 `` 标签的内容,并提供一个示例代码,帮助开发者快速解决问题。 ... [详细]
  • 深入解析 Android 中 EditText 的 getLayoutParams 方法及其代码应用实例 ... [详细]
  • ButterKnife 是一款用于 Android 开发的注解库,主要用于简化视图和事件绑定。本文详细介绍了 ButterKnife 的基础用法,包括如何通过注解实现字段和方法的绑定,以及在实际项目中的应用示例。此外,文章还提到了截至 2016 年 4 月 29 日,ButterKnife 的最新版本为 8.0.1,为开发者提供了最新的功能和性能优化。 ... [详细]
  • 开发笔记:深入解析Android自定义控件——Button的72种变形技巧
    开发笔记:深入解析Android自定义控件——Button的72种变形技巧 ... [详细]
  • 【问题】在Android开发中,当为EditText添加TextWatcher并实现onTextChanged方法时,会遇到一个问题:即使只对EditText进行一次修改(例如使用删除键删除一个字符),该方法也会被频繁触发。这不仅影响性能,还可能导致逻辑错误。本文将探讨这一问题的原因,并提供有效的解决方案,包括使用Handler或计时器来限制方法的调用频率,以及通过自定义TextWatcher来优化事件处理,从而提高应用的稳定性和用户体验。 ... [详细]
  • 在Android平台中,播放音频的采样率通常固定为44.1kHz,而录音的采样率则固定为8kHz。为了确保音频设备的正常工作,底层驱动必须预先设定这些固定的采样率。当上层应用提供的采样率与这些预设值不匹配时,需要通过重采样(resample)技术来调整采样率,以保证音频数据的正确处理和传输。本文将详细探讨FFMpeg在音频处理中的基础理论及重采样技术的应用。 ... [详细]
  • 本文介绍了如何在iOS平台上使用GLSL着色器将YV12格式的视频帧数据转换为RGB格式,并展示了转换后的图像效果。通过详细的技术实现步骤和代码示例,读者可以轻松掌握这一过程,适用于需要进行视频处理的应用开发。 ... [详细]
  • 设计实战 | 10个Kotlin项目深度解析:首页模块开发详解
    设计实战 | 10个Kotlin项目深度解析:首页模块开发详解 ... [详细]
  • 掌握Android UI设计:利用ZoomControls实现图片缩放功能
    本文介绍了如何在Android应用中通过使用ZoomControls组件来实现图片的缩放功能。ZoomControls提供了一种简单且直观的方式,让用户可以通过点击放大和缩小按钮来调整图片的显示大小。文章详细讲解了ZoomControls的基本用法、布局设置以及与ImageView的结合使用方法,适合初学者快速掌握Android UI设计中的这一重要功能。 ... [详细]
  • 经过半年的精心整理,我们汇总了当前市场上最全面的Android面试题解析,为移动开发人员的晋升和加薪提供了宝贵的参考资料。本书详细涵盖了从基础到高级的各类面试题,帮助读者全面提升技术实力和面试表现。章节目录包括:- 第一章:Android基础面试题- 第二章:... ... [详细]
  • 本文深入探讨了 Android DrawingView 的优化技巧与实现方法,重点介绍了如何实现平滑绘制效果。通过支持常见的绘图工具和形状,以及图层变换功能,提升了用户体验。文章详细解析了绘制过程中的性能优化策略,包括减少重绘次数、使用硬件加速和优化内存管理等技术,为开发者提供了实用的参考。 ... [详细]
  • 通过菜单项触发Activity启动过程详解
    本文详细解析了通过菜单项触发Activity启动的过程。在Android开发中,菜单项是用户与应用交互的重要途径之一。文章从技术角度深入探讨了如何通过菜单项触发特定Activity的启动,并提供了具体的代码示例和实现步骤。通过对菜单项的响应处理、Intent的创建与传递等关键环节的分析,帮助开发者更好地理解和掌握这一机制。 ... [详细]
author-avatar
lmc的
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有