无法在空对象上调用 void android.view.View.setTranslationZ(float)

问题描述 投票:0回答:2

我在项目中使用库 recyclerview-multiselect 在 recyclerview 上选择多个项目 在三星设备上: 当我长按并选择一个项目时,多重选择器启动,但是一旦我取消选择最后一个选定的项目,我就会收到以下异常 这种情况仅发生在三星设备上

JNI DETECTED ERROR IN APPLICATION: can't call void android.view.View.setTranslationZ(float) on null object
in call to CallVoidMethodV
from void android.animation.PropertyValuesHolder.nCallFloatMethod(java.lang.Object, long, float)
"main" prio=5 tid=1 Runnable
| group="main" sCount=0 dsCount=0 obj=0x86d99ef0 self=0xb4d07800
| sysTid=28321 nice=0 cgrp=apps sched=0/0 handle=0xb6f9dec8
| state=R schedstat=( 1263638622 186444747 1521 ) utm=90 stm=36 core=1 HZ=100
| stack=0xbe20a000-0xbe20c000 stackSize=8MB
| held mutexes= "mutator lock"(shared held)
native: #00 pc 00004c58  /system/lib/libbacktrace_libc++.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+23)
native: #01 pc 000034c1  /system/lib/libbacktrace_libc++.so (Backtrace::Unwind(unsigned int, ucontext*)+8)
native: #02 pc 002590fd  /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+84)
native: #03 pc 0023c5c3  /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+162)
native: #04 pc 000b2655  /system/lib/libart.so (art::JniAbort(char const*, char const*)+620)
native: #05 pc 000b2d85  /system/lib/libart.so (art::JniAbortF(char const*, char const*, ...)+68)
native: #06 pc 000b309f  /system/lib/libart.so (art::ScopedCheck::CheckVirtualMethod(_jobject*, _jmethodID*)+438)
native: #07 pc 000be40b  /system/lib/libart.so (art::CheckJNI::CallVoidMethodV(_JNIEnv*, _jobject*, _jmethodID*, std::__va_list)+82)
native: #08 pc 00068467  /system/lib/libandroid_runtime.so (???)
native: #09 pc 00072005  /system/framework/arm/boot.oat (Java_android_animation_PropertyValuesHolder_nCallFloatMethod__Ljava_lang_Object_2JF+132)
at android.animation.PropertyValuesHolder.nCallFloatMethod(Native method)
at android.animation.PropertyValuesHolder.access$400(PropertyValuesHolder.java:38)
at android.animation.PropertyValuesHolder$FloatPropertyValuesHolder.setAnimatedValue(PropertyValuesHolder.java:1296)
at android.animation.ObjectAnimator.animateValue(ObjectAnimator.java:952)
at android.animation.ValueAnimator.animationFrame(ValueAnimator.java:1207)
at android.animation.ValueAnimator.doAnimationFrame(ValueAnimator.java:1248)
at android.animation.ValueAnimator$AnimationHandler.doAnimationFrame(ValueAnimator.java:659)
at android.animation.ValueAnimator$AnimationHandler.run(ValueAnimator.java:682)
at android.view.Choreographer$CallbackRecord.run(Choreographer.java:777)
at android.view.Choreographer.doCallbacks(Choreographer.java:590)
at android.view.Choreographer.doFrame(Choreographer.java:559)
android android-recyclerview samsung-mobile
2个回答
9
投票

当我使用recycleview-multiselect时,它在SwappingHolder中设置了setSelectionModeStateListAnimator,setDefaultModeStateListAnimator,setSelectionModeBackgroundDrawable,setDefaultModeBackgroundDrawable 所以在我对持有人的超级电话设置后:

    if ( Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        setSelectionModeStateListAnimator(null);
        setDefaultModeStateListAnimator(null);
    }
    // Default selection mode background drawable is this
    setSelectionModeBackgroundDrawable(null);
    setDefaultModeBackgroundDrawable( null );

并在 xml 中使用了我自己的选择器,这解决了崩溃问题。


0
投票

将 android:enabled="false" 更改为 android:enabled="true" 对我有用

© www.soinside.com 2019 - 2024. All rights reserved.