xml 中未显示 TouchImageView
TouchImageView not showing in xml
我正在使用 TouchImageView 来缩放 in/out 我的照片。但是,在我完成添加 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>
尝试在 ImageView
中添加一个 android:src:@drawable/some_image
,或添加一些背景以查看其宽度和高度。 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>
就我而言,名为“fitImageToView”的方法有问题。
在该方法的某处,它需要从 value:prevMatrix.
获取一个浮点数组
数组不为空。数组中的每个集合都不为空。但是有一些 NaN/Not A Number。
如果得到 NaN,请将值设置为正确的数字(如 0)。
下一帧或者下一次getValue,不会有NaN。
Float.isNaN(float f) 可以帮助您检测 NaN。
(在我的项目中,TouchImageView 可以是非常旧的版本。这个错误可能会被修复。在这种情况下......祝你好运。我无能为力。)
我正在使用 TouchImageView 来缩放 in/out 我的照片。但是,在我完成添加 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>
尝试在 ImageView
中添加一个 android:src:@drawable/some_image
,或添加一些背景以查看其宽度和高度。 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>
就我而言,名为“fitImageToView”的方法有问题。 在该方法的某处,它需要从 value:prevMatrix.
获取一个浮点数组数组不为空。数组中的每个集合都不为空。但是有一些 NaN/Not A Number。 如果得到 NaN,请将值设置为正确的数字(如 0)。 下一帧或者下一次getValue,不会有NaN。
Float.isNaN(float f) 可以帮助您检测 NaN。
(在我的项目中,TouchImageView 可以是非常旧的版本。这个错误可能会被修复。在这种情况下......祝你好运。我无能为力。)