ImageView 无法转换为 PhotoView

ImageView cannot be cast to PhotoView

我正在使用 PhotoView 库来显示一些图像。

当我尝试将 PhotoView 与 Picasso 一起使用时,如 sample 所示,我在这一行得到 ClassCastException

PhotoView photoView = (PhotoView) findViewById(R.id.imageViewTest);

这是堆栈跟踪中显示的内容:

Caused by: java.lang.ClassCastException: android.support.v7.widget.AppCompatImageView cannot be cast to uk.co.senab.photoview.PhotoView

我是不是漏掉了什么?

您也需要在 XML 中使用 PhotoView,而不是 ImageView。执行如下操作:

<uk.co.senab.photoview.PhotoView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/imageViewTest"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"/>