Android 中 FilePath 的 ImageView 加载问题(截断)

Posted

技术标签:

【中文标题】Android 中 FilePath 的 ImageView 加载问题(截断)【英文标题】:ImageView loading issue from FilePath in Android (cut off) 【发布时间】:2020-03-15 04:29:36 【问题描述】:

我有一个来自我的文件路径的屏幕截图图像,我正在尝试将其加载到 ImageView 中。 但是,imageView 被切断了。

它是这样的:

应该是这样的:

这是我的代码:

// MainActivity.java
//Setting image view from filepath
      File imgFile = new File(arScreenshotPath);
      ImageView myImage = findViewById(R.id.arScreen1);
      if(imgFile.exists())
        myImage.setImageBitmap(Utils.decodeSampledBitmapFromFile(arScreenshotPath, 500, 250));

//        myImage.setImageBitmap(Bitmap.createScaledBitmap(myBitmap, 206, 144, false));
      else 
        myImage.setImageResource(R.drawable.no_image);
      

XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/activity_main"
    android:layout_
    android:layout_
    android:orientation="vertical"
    tools:context=".CostActivity">

    <!-- Ar Screen capture -->
    <!-- Ar Screen capture -->
    <ImageView
        android:id="@+id/arScreen1"
        android:layout_
        android:layout_
        android:scaleType="fitXY"
        android:adjustViewBounds="true"
        />


    <!--    Description -->
    <TextView
        android:id="@+id/quote2"
        android:layout_
        android:layout_
        android:text="DESCRIPTION"
        android:textAppearance="@style/TextAppearance.AppCompat.Medium"
        android:textColor="@android:color/black"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:textStyle="bold"/>

    <com.google.android.material.textfield.TextInputLayout
        android:id="@+id/descriptionTextInputLayout"
        style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
        android:layout_
        android:layout_
        app:hintTextAppearance="@android:style/TextAppearance.Small"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginBottom="10dp"
        >

        <com.google.android.material.textfield.TextInputEditText
            android:id="@+id/descriptionInput"
            android:layout_
            android:layout_
            android:background="@drawable/rounded_edittext" />
    </com.google.android.material.textfield.TextInputLayout>

    <!--    Measurement -->
    <TextView
        android:id="@+id/measurement"
        android:layout_
        android:layout_
        android:text="MEASUREMENT"
        android:textAppearance="@style/TextAppearance.AppCompat.Medium"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:textColor="@android:color/black"
        android:textStyle="bold"/>

    <LinearLayout android:layout_
        android:layout_
        android:orientation="horizontal">
        <!--  Length -->
        <com.google.android.material.textfield.TextInputLayout
            android:id="@+id/lengthTextInputLayout"
            style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
            android:layout_
            android:layout_
            app:hintTextAppearance="@android:style/TextAppearance.Small"
            android:layout_weight="1"
            android:layout_marginLeft="10dp"
            android:layout_marginRight="10dp"
            android:layout_marginBottom="10dp"
            >

            <com.google.android.material.textfield.TextInputEditText
                android:id="@+id/lengthInput"
                android:layout_
                android:layout_
                android:background="@drawable/rounded_edittext"
                android:hint="Length"
                android:inputType="numberDecimal" />

        </com.google.android.material.textfield.TextInputLayout>


        <!--    Breadth    -->

        <TextView
            android:id="@+id/imageView2"
            android:layout_
            android:layout_
            android:gravity="end"
            android:text="X"
            android:textAppearance="@style/TextAppearance.AppCompat.Medium"
            android:textColor="@android:color/black"
            android:textStyle="bold" />

        <com.google.android.material.textfield.TextInputLayout
            android:id="@+id/breathTextInputLayout"
            style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
            android:layout_
            android:layout_
            app:hintTextAppearance="@android:style/TextAppearance.Small"
            android:layout_weight="1"
            android:layout_marginLeft="10dp"
            android:layout_marginRight="10dp"
            android:layout_marginBottom="10dp"
            >

            <com.google.android.material.textfield.TextInputEditText
                android:id="@+id/breathInput"
                android:layout_
                android:layout_
                android:background="@drawable/rounded_edittext"
                android:hint="Breadth"
                android:inputType="numberDecimal" />

        </com.google.android.material.textfield.TextInputLayout>

        <Spinner
            android:id="@+id/cm"
            style="@style/spinnerItemStyle"
            android:layout_
            android:layout_
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:textAppearance="@style/TextAppearance.AppCompat.Medium"
            android:textColor="@android:color/black"
            android:textStyle="bold"/>

    </LinearLayout>

    <!--    Cost Per Square CM -->
    <TextView
        android:id="@+id/cost_per_square_cm"
        android:layout_
        android:layout_
        android:text="COST PER SQUARE UNIT"
        android:textAppearance="@style/TextAppearance.AppCompat.Medium"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:textColor="@android:color/black"
        android:textStyle="bold" />

    <com.google.android.material.textfield.TextInputLayout
        android:id="@+id/costTextInputLayout"
        style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
        android:layout_
        android:layout_
        app:hintTextAppearance="@android:style/TextAppearance.Small"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginBottom="10dp">

        <com.google.android.material.textfield.TextInputEditText
            android:id="@+id/costInput"
            android:layout_
            android:layout_
            android:background="@drawable/rounded_edittext"
            android:hint="$"
            android:inputType="numberDecimal" />
    </com.google.android.material.textfield.TextInputLayout>

    <!--   Variable -->

    <TextView
        android:id="@+id/variable"
        android:layout_
        android:layout_
        android:text="VARIABLE (+)"
        android:textAppearance="@style/TextAppearance.AppCompat.Medium"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:textColor="@android:color/black"
        android:textStyle="bold"
        />

    <com.google.android.material.textfield.TextInputLayout
        android:id="@+id/variableTextInputLayout"
        style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
        android:layout_
        android:layout_
        app:hintTextAppearance="@android:style/TextAppearance.Small"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginBottom="10dp">

        <com.google.android.material.textfield.TextInputEditText
            android:id="@+id/variableInput"
            android:layout_
            android:layout_
            android:background="@drawable/rounded_edittext"
            android:hint="$"
            android:inputType="numberDecimal" />

    </com.google.android.material.textfield.TextInputLayout>


</LinearLayout>

我尝试了很多方法,比如减少布局重量,但都不起作用。 我怀疑这也可能是由于 Java 代码。

【问题讨论】:

您可能想节省一些时间并使用编写良好的图像库!例如square.github.io/picasso 另外,从您的代码中,我可以猜测问题出在 myImage.setImageBitmap ...您还指定图像的宽度和高度的地方!所以关于 imageView 的 xml 属性会被 java 代码覆盖。 你能说明decodeSampledBitmapFromFile是什么吗? 试试,这是我的解决方案 【参考方案1】:

在你的 ImageView 块中添加这个属性

android:scaleType="fitCenter"

android:layout_weight="0.2"

您可以更改android:layout_weight的值

【讨论】:

以上方法我都试过了,还是不行【参考方案2】:

并尝试以下代码从文件中设置位图图像。

File imgFile = new  File(arScreenshotPath);

if(imgFile.exists())

    Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());

    ImageView myImage = findViewById(R.id.arScreen1);

    myImage.setImageBitmap(myBitmap);


并在清单文件中包含此权限:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

【讨论】:

以上是关于Android 中 FilePath 的 ImageView 加载问题(截断)的主要内容,如果未能解决你的问题,请参考以下文章

无法使用 java 套接字将图像从 android studio 发送到 pc,filePath 返回 null

Android 对.properties文件的读取

Android 对.properties文件的读取

Android 在代码中安装 APK 文件

在android中刷新整个listview [重复]

Android 捕获和显示图像应用程序