[Solved] Cardview onclick opens a new activity
you can send id with Intent.putExtra and then get it with Intent.getIntExtra in your activity and provide your data in activity Here is an example that sending id and index to MyActtivity if youre using ListView: AdapterView.OnItemClickListener onItemClickListener = new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { Intent … Read more