0

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

当我尝试将 PhotoView 与 Picasso 一起使用时,如示例所示,我在这一行得到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

我错过了什么吗?

4

1 回答 1

1

您还需要在 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"/>
于 2016-03-20T16:17:28.467 回答