ImageView imageView = findViewById(R.id.imageView); imageView.setImageResource(R.drawable.my_image); imageView.setContentDescription("A beautiful mountain range");In this example, the ImageView object is displaying an image resource called "my_image". The setContentDescription() method is called with the string "A beautiful mountain range" to describe the image. The android.widget ImageView belongs to the Android Framework package library.