Basically, you need to pass image information to the next action using Intent.
You should use:
Intent intent = new Intent(firstActivity.this, secondActivity.class);
intent.putExtra("fileName","SEE_BELOW");
startActivity(intent);
A:
SD- - SEE_BELOW .
B:
ListView - arg2 onItemSelected, , , , SD String, A.
C:
- SD, String Intent, A.
, SecondActivity, onCreate :
Intent intent = getIntent();
String image = intent.getStringExtra("fileName");
image - ImageView, !