我在上个月随机遇到了这个问题:
java.lang.IllegalArgumentException: parameter must be a descendant of this view
at android.view.ViewGroup.offsetRectBetweenParentAndChild(ViewGroup.java:4479)
at android.view.ViewGroup.offsetDescendantRectToMyCoords(ViewGroup.java:4416)
at android.view.ViewRootImpl.scrollToRectOrFocus(ViewRootImpl.java:2656)
at android.view.ViewRootImpl.draw(ViewRootImpl.java:2300)
at android.view.ViewRootImpl.performDraw(ViewRootImpl.java:2249)
at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:1882)
at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1009)
at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:5508)
at android.view.Choreographer$CallbackRecord.run(Choreographer.java:749)
at android.view.Choreographer.doCallbacks(Choreographer.java:562)
at android.view.Choreographer.doFrame(Choreographer.java:532)
at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:735)
at android.os.Handler.handleCallback(Handler.java:730)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:213)
at android.app.ActivityThread.main(ActivityThread.java:5225)
at java.lang.reflect.Method.invokeNative(Method.java)
at java.lang.reflect.Method.invoke(Method.java:525)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:741)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:557)
at dalvik.system.NativeStart.main(NativeStart.java)
经过大量的挖掘和测试后,我发现问题是在更新Appcompat lib(android-support-v7-appcompat
)后于10月27日引入的。最新版本的Appcompat似乎无法解决这个问题。
我认为这个问题与类似的错误无关(比如this question),因为我已经隔离了在我的回购中引入问题的提交,而且它是包含Appcompat的问题。更新
有什么线索吗?那里有同样问题的人吗?
答案 0 :(得分:0)
您应该在 XML :
中尝试以下操作android:descendantFocusability="beforeDescendants"
答案 1 :(得分:0)
通常在ListView
上有一个名为offsetRectBetweenParentAndChild()
的方法,它具有在滚动上回收视图的工作,此方法通常会抛出此异常。
这个问题的最佳答案是
当listView开始滚动时,将ScrollListener附加到您的Activity,清除当前焦点。
我在this问题中找到了。
请查看并告知我是否还有其他问题。
答案 2 :(得分:-1)
您是否尝试过正确地在View上设置Focusability?:
mYourView.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);
或XML
android:descendantFocusability="blocksDescendants"