19

I am using library recyclerview-multiselect in my project to select multiple items on recyclerview On samsung device: When I longpress and select a item the multiselector starts but as soon as I deselect the last selected item I get following exception This is happening only om samsung devices

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)
Binoy Babu
  • 16,699
  • 17
  • 91
  • 134
chin87
  • 498
  • 4
  • 18
  • 1
    I am getting the same crash when calling setStateListAnimator() on my Button. It is happening on my Samsung Galaxy S5. – rrbrambley Jul 01 '15 at 22:38
  • 2
    We had the same problem when we called setStateListAnimator(null); on a View. – hellphil Jul 06 '15 at 12:37
  • @hellphil I already tried that, I am using recyclerview, on which view did u do that ? any more suggestions ?? – chin87 Jul 07 '15 at 16:10
  • 1
    I am getting the same crash as @rrbrambley but it happens when i set `android:enabled="false"` on my Button in xml. – Etienne Lawlor May 01 '17 at 17:46

1 Answers1

9

As I was using recycleview-multiselect, it has setSelectionModeStateListAnimator,setDefaultModeStateListAnimator, setSelectionModeBackgroundDrawable,setDefaultModeBackgroundDrawable set in SwappingHolder So after my super call to holder just set:

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

And used my own selectors in xml, this has resolved the crash.

chin87
  • 498
  • 4
  • 18
  • Please post some sample code of your selectors, how they looked, and perhaps how you implemented them. This will be very beneficial to the rising Samsung Lollipop community. – AlleyOOP Jul 29 '15 at 05:39
  • I also use recycleview-multiselect and this happens after I long-click on some item for few seconds. Note that it is OK in emulator. @chin87, could you give some more info, please? – WindRider Sep 21 '15 at 10:19
  • @WindRider have you used ViewHolder ? In ViewHolders constructor, after super call add the above code – chin87 Dec 28 '15 at 12:06
  • I had the same problem, thank for the fix. you saved me hours of debuging – Johny19 Dec 02 '16 at 03:24