public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.full_image);
ImageView image = (ImageView) findViewById(R.id.imageView1);
Bitmap bMap = BitmapFactory.decodeStream(R.drawable.sample_1);
image.setImageBitmap(bMap);
}
Although the link is made I am unable to display the image.
Hi you can just use like this
Thank you.