Recyclerview selection + clickable items The Next CEO of Stack OverflowStrange out of memory issue while loading an image to a Bitmap objectHow do I make links in a TextView clickable?RecyclerView onClickHow to add dividers and spaces between items in RecyclerView?Why doesn't RecyclerView have onItemClickListener()?How to create RecyclerView with multiple view type?Select items in RecyclerViewRecyclerView - Get view at particular positionClick event not working for Recyclerview item with SwipeLayout in Xamarin AndroidSave state of the item selected in RecyclerView when view is reused while scrolling

How do spells that require an ability check vs. the caster's spell save DC work?

Why did we only see the N-1 starfighters in one film?

Why do professional authors make "consistency" mistakes? And how to avoid them?

Rotate a column

Under what conditions does the function C = f(A,B) satisfy H(C|A) = H(B)?

Why is Miller's case titled R (Miller)?

Anatomically Correct Mesopelagic Aves

What is meant by a M next to a roman numeral?

ls Ordering[Ordering[list]] optimal?

Only print output after finding pattern

What does this shorthand mean?

Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?

Is HostGator storing my password in plaintext?

How can I get through very long and very dry, but also very useful technical documents when learning a new tool?

How easy is it to start Magic from scratch?

Is a stroke of luck acceptable after a series of unfavorable events?

Why is there a PLL in CPU?

A pseudo-riley?

How to Reset Passwords on Multiple Websites Easily?

Grabbing quick drinks

Apart from "berlinern", do any other German dialects have a corresponding verb?

Fastest way to shutdown Ubuntu Mate 18.10

How to make a variable always equal to the result of some calculations?

declare as function pointer and initialize in the same line



Recyclerview selection + clickable items



The Next CEO of Stack OverflowStrange out of memory issue while loading an image to a Bitmap objectHow do I make links in a TextView clickable?RecyclerView onClickHow to add dividers and spaces between items in RecyclerView?Why doesn't RecyclerView have onItemClickListener()?How to create RecyclerView with multiple view type?Select items in RecyclerViewRecyclerView - Get view at particular positionClick event not working for Recyclerview item with SwipeLayout in Xamarin AndroidSave state of the item selected in RecyclerView when view is reused while scrolling










0















I recently implemented a small RecyclerView setup and tried out the recyclerview-selection library. So far, the selection works fine but I also connected a click handler on the recyclerview items and now every time I long-press an item to activate the selection mode, it also counts as a simple tap and the activity changes (because that is what I programmed it to do on item tap). I managed to avoid this by adding a simple boolean to my recyclerview adapter, which is called when the selection mode starts:



void setIgnoreClicks(boolean b) 
this.ignoreClicks = b;



and then in the bind-function of my viewholder:



void bind(MyModelClass m) 
...
view.setOnClickListener(() ->
if(!adapter.isIgnoreClicks())
...

);



now when the selection mode ends, the boolean is set back to false and the taps go through again.



The problem is that when only one item selected and you tap on it to deselt it, the selection mode is also exited - which is fine, except that that tap is now not ignored anymore and so, the activity changes. What I want basically is to ignore that last tap too. Is there some way to stop the event if the selection mode is still active?



Thanks










share|improve this question




























    0















    I recently implemented a small RecyclerView setup and tried out the recyclerview-selection library. So far, the selection works fine but I also connected a click handler on the recyclerview items and now every time I long-press an item to activate the selection mode, it also counts as a simple tap and the activity changes (because that is what I programmed it to do on item tap). I managed to avoid this by adding a simple boolean to my recyclerview adapter, which is called when the selection mode starts:



    void setIgnoreClicks(boolean b) 
    this.ignoreClicks = b;



    and then in the bind-function of my viewholder:



    void bind(MyModelClass m) 
    ...
    view.setOnClickListener(() ->
    if(!adapter.isIgnoreClicks())
    ...

    );



    now when the selection mode ends, the boolean is set back to false and the taps go through again.



    The problem is that when only one item selected and you tap on it to deselt it, the selection mode is also exited - which is fine, except that that tap is now not ignored anymore and so, the activity changes. What I want basically is to ignore that last tap too. Is there some way to stop the event if the selection mode is still active?



    Thanks










    share|improve this question


























      0












      0








      0








      I recently implemented a small RecyclerView setup and tried out the recyclerview-selection library. So far, the selection works fine but I also connected a click handler on the recyclerview items and now every time I long-press an item to activate the selection mode, it also counts as a simple tap and the activity changes (because that is what I programmed it to do on item tap). I managed to avoid this by adding a simple boolean to my recyclerview adapter, which is called when the selection mode starts:



      void setIgnoreClicks(boolean b) 
      this.ignoreClicks = b;



      and then in the bind-function of my viewholder:



      void bind(MyModelClass m) 
      ...
      view.setOnClickListener(() ->
      if(!adapter.isIgnoreClicks())
      ...

      );



      now when the selection mode ends, the boolean is set back to false and the taps go through again.



      The problem is that when only one item selected and you tap on it to deselt it, the selection mode is also exited - which is fine, except that that tap is now not ignored anymore and so, the activity changes. What I want basically is to ignore that last tap too. Is there some way to stop the event if the selection mode is still active?



      Thanks










      share|improve this question
















      I recently implemented a small RecyclerView setup and tried out the recyclerview-selection library. So far, the selection works fine but I also connected a click handler on the recyclerview items and now every time I long-press an item to activate the selection mode, it also counts as a simple tap and the activity changes (because that is what I programmed it to do on item tap). I managed to avoid this by adding a simple boolean to my recyclerview adapter, which is called when the selection mode starts:



      void setIgnoreClicks(boolean b) 
      this.ignoreClicks = b;



      and then in the bind-function of my viewholder:



      void bind(MyModelClass m) 
      ...
      view.setOnClickListener(() ->
      if(!adapter.isIgnoreClicks())
      ...

      );



      now when the selection mode ends, the boolean is set back to false and the taps go through again.



      The problem is that when only one item selected and you tap on it to deselt it, the selection mode is also exited - which is fine, except that that tap is now not ignored anymore and so, the activity changes. What I want basically is to ignore that last tap too. Is there some way to stop the event if the selection mode is still active?



      Thanks







      java android android-recyclerview






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 21 at 19:51







      Eike Cochu

















      asked Mar 21 at 16:31









      Eike CochuEike Cochu

      1,38452351




      1,38452351






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Ok, solved this myself. What I did was to add a touch listener to my recyclerview which sets the ignoreClick to true if the actionmode is active and no item is clicked:



          modelList.addOnItemTouchListener(new RecyclerView.OnItemTouchListener() 
          @Override
          public boolean onInterceptTouchEvent(@NonNull RecyclerView rv, @NonNull MotionEvent e)
          if (e.getAction() != MotionEvent.ACTION_UP)
          return false;
          if(actionMode != null)
          ignoreClick = rv.findChildViewUnder(e.getX(), e.getY()) != null; // ignore click if child is null (not clicked on a child, but the empty background of the recycler view)
          return false;


          ...
          );


          and then in my item click handler:



          private void showDetails(final Model model) 
          if(ignoreClick)
          ignoreClick = false; // the click is ignored, reset to false
          else if (!selectionTracker.hasSelection())
          final Intent intent = new Intent(MainActivity.this, ModelViewActivity.class);
          intent.putExtra(Codes.DATA_MODEL, model);
          startActivityForResult(intent, Codes.INTENT_MODEL_SHOW);







          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55285141%2frecyclerview-selection-clickable-items%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Ok, solved this myself. What I did was to add a touch listener to my recyclerview which sets the ignoreClick to true if the actionmode is active and no item is clicked:



            modelList.addOnItemTouchListener(new RecyclerView.OnItemTouchListener() 
            @Override
            public boolean onInterceptTouchEvent(@NonNull RecyclerView rv, @NonNull MotionEvent e)
            if (e.getAction() != MotionEvent.ACTION_UP)
            return false;
            if(actionMode != null)
            ignoreClick = rv.findChildViewUnder(e.getX(), e.getY()) != null; // ignore click if child is null (not clicked on a child, but the empty background of the recycler view)
            return false;


            ...
            );


            and then in my item click handler:



            private void showDetails(final Model model) 
            if(ignoreClick)
            ignoreClick = false; // the click is ignored, reset to false
            else if (!selectionTracker.hasSelection())
            final Intent intent = new Intent(MainActivity.this, ModelViewActivity.class);
            intent.putExtra(Codes.DATA_MODEL, model);
            startActivityForResult(intent, Codes.INTENT_MODEL_SHOW);







            share|improve this answer



























              0














              Ok, solved this myself. What I did was to add a touch listener to my recyclerview which sets the ignoreClick to true if the actionmode is active and no item is clicked:



              modelList.addOnItemTouchListener(new RecyclerView.OnItemTouchListener() 
              @Override
              public boolean onInterceptTouchEvent(@NonNull RecyclerView rv, @NonNull MotionEvent e)
              if (e.getAction() != MotionEvent.ACTION_UP)
              return false;
              if(actionMode != null)
              ignoreClick = rv.findChildViewUnder(e.getX(), e.getY()) != null; // ignore click if child is null (not clicked on a child, but the empty background of the recycler view)
              return false;


              ...
              );


              and then in my item click handler:



              private void showDetails(final Model model) 
              if(ignoreClick)
              ignoreClick = false; // the click is ignored, reset to false
              else if (!selectionTracker.hasSelection())
              final Intent intent = new Intent(MainActivity.this, ModelViewActivity.class);
              intent.putExtra(Codes.DATA_MODEL, model);
              startActivityForResult(intent, Codes.INTENT_MODEL_SHOW);







              share|improve this answer

























                0












                0








                0







                Ok, solved this myself. What I did was to add a touch listener to my recyclerview which sets the ignoreClick to true if the actionmode is active and no item is clicked:



                modelList.addOnItemTouchListener(new RecyclerView.OnItemTouchListener() 
                @Override
                public boolean onInterceptTouchEvent(@NonNull RecyclerView rv, @NonNull MotionEvent e)
                if (e.getAction() != MotionEvent.ACTION_UP)
                return false;
                if(actionMode != null)
                ignoreClick = rv.findChildViewUnder(e.getX(), e.getY()) != null; // ignore click if child is null (not clicked on a child, but the empty background of the recycler view)
                return false;


                ...
                );


                and then in my item click handler:



                private void showDetails(final Model model) 
                if(ignoreClick)
                ignoreClick = false; // the click is ignored, reset to false
                else if (!selectionTracker.hasSelection())
                final Intent intent = new Intent(MainActivity.this, ModelViewActivity.class);
                intent.putExtra(Codes.DATA_MODEL, model);
                startActivityForResult(intent, Codes.INTENT_MODEL_SHOW);







                share|improve this answer













                Ok, solved this myself. What I did was to add a touch listener to my recyclerview which sets the ignoreClick to true if the actionmode is active and no item is clicked:



                modelList.addOnItemTouchListener(new RecyclerView.OnItemTouchListener() 
                @Override
                public boolean onInterceptTouchEvent(@NonNull RecyclerView rv, @NonNull MotionEvent e)
                if (e.getAction() != MotionEvent.ACTION_UP)
                return false;
                if(actionMode != null)
                ignoreClick = rv.findChildViewUnder(e.getX(), e.getY()) != null; // ignore click if child is null (not clicked on a child, but the empty background of the recycler view)
                return false;


                ...
                );


                and then in my item click handler:



                private void showDetails(final Model model) 
                if(ignoreClick)
                ignoreClick = false; // the click is ignored, reset to false
                else if (!selectionTracker.hasSelection())
                final Intent intent = new Intent(MainActivity.this, ModelViewActivity.class);
                intent.putExtra(Codes.DATA_MODEL, model);
                startActivityForResult(intent, Codes.INTENT_MODEL_SHOW);








                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 21 at 19:51









                Eike CochuEike Cochu

                1,38452351




                1,38452351





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55285141%2frecyclerview-selection-clickable-items%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

                    155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해