[Solved] set image resources in imageview in android [closed]


Answered based on Comments

Try this

Place your images in res/drawable folder and then

 <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="https://stackoverflow.com/questions/16273537/@drawable/rectangle" />      <-- your image in drawable

solved set image resources in imageview in android [closed]