I want to pass the value of textview from the adapter class to another textview of another activity. please help me ...
//recycleradapter class
Intent intent = new Intent(applicationContext, DetailActivity.class);
intent.putExtra("likes",holder.quantity.toString());
applicationContext.startActivity(intent);
// detail acivity class
String like = getIntent().getStringExtra("Likes");
Toast.makeText(this, like+"", Toast.LENGTH_SHORT).show();
item_quantiy.setText(like);