In our app we have list of messages. We are switching to RecyclerView. Our messages can consist from texts, images. Sample message can look like this.
RecyclerView
You may try this code :
GestureDetector detector;
then:
detector = new GestureDetector(MainActivity.this, MainActivity.this); avatar.setOnTouchListener(new OnTouchListener() { public boolean onTouch(View view, MotionEvent e) { detector.onTouchEvent(e); return false; } });