]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/ui/RecyclerItemListener.java
dynamic list of profiles, add profile removal
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / ui / RecyclerItemListener.java
1 /*
2  * Copyright © 2018 Damyan Ivanov.
3  * This file is part of Mobile-Ledger.
4  * Mobile-Ledger is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * Mobile-Ledger is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.ui;
19
20 import android.content.Context;
21 import android.support.annotation.NonNull;
22 import android.support.v7.widget.RecyclerView;
23 import android.support.v7.widget.RecyclerView.OnItemTouchListener;
24 import android.view.GestureDetector;
25 import android.view.MotionEvent;
26 import android.view.View;
27
28 public class RecyclerItemListener implements OnItemTouchListener {
29     private RecyclerTouchListener listener;
30     private GestureDetector gd;
31
32     public interface RecyclerTouchListener {
33         void onClickItem(View v, int position);
34         void onLongClickItem(View v, int position);
35     }
36
37     public RecyclerItemListener(Context ctx, RecyclerView rv, RecyclerTouchListener listener) {
38         this.listener = listener;
39         this.gd = new GestureDetector(
40                 ctx, new GestureDetector.SimpleOnGestureListener() {
41             @Override
42             public void onLongPress(MotionEvent e) {
43                 View v = rv.findChildViewUnder(e.getX(), e.getY());
44                 listener.onLongClickItem(v, rv.getChildAdapterPosition(v));
45             }
46
47             @Override
48             public boolean onSingleTapUp(MotionEvent e) {
49                 View v = rv.findChildViewUnder(e.getX(), e.getY());
50                 listener.onClickItem(v, rv.getChildAdapterPosition(v));
51                 return true;
52             }
53         }
54         );
55     }
56
57     @Override
58     public boolean onInterceptTouchEvent(@NonNull RecyclerView recyclerView,
59                                          @NonNull MotionEvent motionEvent) {
60         View v = recyclerView.findChildViewUnder(motionEvent.getX(), motionEvent.getY());
61         return (v != null) && gd.onTouchEvent(motionEvent);
62     }
63
64     @Override
65     public void onTouchEvent(@NonNull RecyclerView recyclerView, @NonNull MotionEvent motionEvent) {
66
67     }
68
69     @Override
70     public void onRequestDisallowInterceptTouchEvent(boolean b) {
71
72     }
73 }