Jeroen Beuzenberg
Jeroen Beuzenberg
Same happens for me. However sometimes it does work. Will post any further findings here.
Hi @xaviml , Thanks for the reply! I'll check the logs when I'm back home again. But I do have tested this with lights that have both `color_temp` and `xy_color`....
Also happens when you include all the seekbars in your testapp inside an ScrollView. The slightest vertical movement results in focus loss. So it's not RecyclerViewAdapter related.
Solved by setting an ontouchlistener: ``` recyclerViewHolder.seekbar.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { int action = event.getAction(); switch (action) { case MotionEvent.ACTION_DOWN: // Disallow ScrollView to...