0

我正在使用 TouchImageView 放大/缩小我的图片。但是,在我完成添加 TouchImageView.java 并继续在 xml 中创建自定义视图之后,它没有显示出来。下面是我的xml文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/cast_expanded_controller_background_color"
android:id="@+id/Rlay">

<com.example.zhen.myggwpapp.TouchImageView
    android:layout_height="350dp"
    android:id="@+id/iv_preview_image"
    android:layout_width="match_parent"
    android:scaleType="matrix"
    android:layout_centerVertical="true"
    android:layout_alignParentStart="true" /></RelativeLayout>

xml中的T​​ouchImageView仅显示蓝点

4

2 回答 2

1

尝试android:src:@drawable/some_image在你的内部添加一个ImageView,或者添加一些背景来查看它的宽度和高度。android:background="@color/some_color"

  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:orientation="vertical" android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/color_white"
        android:id="@+id/Rlay">

        <com.example.zhen.myggwpapp.TouchImageView
            android:layout_height="350dp"
            android:background="@color/color_black"
            android:id="@+id/iv_preview_image"
            android:src="@drawable/some_image"
            android:layout_width="match_parent"
            android:scaleType="matrix"
            android:layout_centerVertical="true"
            android:layout_alignParentStart="true" />

    </RelativeLayout>
于 2017-04-03T18:20:13.167 回答
0

就我而言,名为“fitImageToView”的方法有问题。在该方法的某处,它需要从 value:prevMatrix 中获取一个浮点数组。

数组不为空。数组中的每个集合都不为空。但是有一些 NaN/不是数字。如果您有 NaN,请将值设置为正确的数字(如 0)。在下一帧或下一次 getValue 中,不会有任何 NaN。

Float.isNaN(float f) 可以帮助你检测 NaN。

(在我的项目中,TouchImageView 可以是非常旧的版本。这个错误可能会被修复。在这种情况下......祝你好运。我无能为力。)

于 2020-08-17T07:19:55.627 回答