2014-01-17 88 views
4

我正在使用MUPDF为一个Android项目,但有一些Android用户的问题。我得到报告如下:MUPDF UnsupportedOperationException当打开pdf

java.lang.UnsupportedOperationException: Not supported 
E/AndroidRuntime(4677): at com.odilogy.mupdf.ReaderView.getSelectedView(ReaderView.java:664) 
E/AndroidRuntime(4677): at android.widget.AdapterView.onInitializeAccessibilityEvent(AdapterView.java:951) 
E/AndroidRuntime(4677): at android.widget.AdapterView.onRequestSendAccessibilityEvent(AdapterView.java:926) 
E/AndroidRuntime(4677): at android.view.ViewGroup.requestSendAccessibilityEvent(ViewGroup.java:704) 
E/AndroidRuntime(4677): at android.view.View.sendAccessibilityEventUncheckedInternal(View.java:4952) 
E/AndroidRuntime(4677): at android.view.View.sendAccessibilityEventUnchecked(View.java:4933) 
E/AndroidRuntime(4677): at android.view.ViewRootImpl$SendWindowContentChangedAccessibilityEvent.run(ViewRootImpl.java:6675) 
E/AndroidRuntime(4677): at android.os.Handler.handleCallback(Handler.java:733) 
E/AndroidRuntime(4677): at android.os.Handler.dispatchMessage(Handler.java:95) 
E/AndroidRuntime(4677): at android.os.Looper.loop(Looper.java:136) 
E/AndroidRuntime(4677): at android.app.ActivityThread.main(ActivityThread.java:5017) 
E/AndroidRuntime(4677): at java.lang.reflect.Method.invokeNative(Native Method) 
E/AndroidRuntime(4677): at java.lang.reflect.Method.invoke(Method.java:515) 
E/AndroidRuntime(4677): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779) 
E/AndroidRuntime(4677): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595) 
E/AndroidRuntime(4677): at dalvik.system.NativeStart.main(Native Method) 

这个例外时通过这条线:

public View getSelectedView() { 
    throw new UnsupportedOperationException("Not supported"); 
} 

我不知道如何解决这个问题,任何人都可以帮忙吗?谢谢!

问候

+1

为什么这种方法getSelectedView()执行你应该调查。如果你只是不想抛出异常,你可以注释掉//抛出新的UnsupportedOperationException(“不支持”); – yushulx

回答

5

只是固定:

public View getSelectedView() { 
//throw new UnsupportedOperationException("Not supported"); 

return null; 
+1

这是修补症状,没有解决问题。 – ccxvii

+4

其实这是[MuPDF team]给出的解决方案(http://bugs.ghostscript.com/show_bug.cgi?id=695132#c1) – David

+0

我只在新的Android版本(例7.0)中出现此错误。 – elirigobeli