I am a beginner in the android studio. I have created a button which opens a new activity which shows the full details of a specific recycler view item. How I can make this on left swipe. I need on left swipe a new activity should be open and the extra values should be passed to it. Please help. My On click listener code
public void onItemClick(int position) {
Intent detailintent = new Intent(this, DetailActivity.class);
ExampleItem clickeditem = mExampleList.get(position);
detailintent.putExtra(EXTRA_URL, clickeditem.getmDate());
startActivity(detailintent);
}