songining
    <ImageView
        android:id="@+id/test" // 이미지 id 설정 
        android:layout_width="150dp" // 이미지 가로길이 설정 
        android:layout_height="150dp" // 이미지 세로길이 설정 
        android:src="@drawable/movie_image"> 

 

이미지 경로를 설정해주는 것이 중요하다. 

app -> res -> drawable -> show in Explorer -> drowable 폴더 안에 이미지 복사 

그럼 drawable에 해당 이미지가 저장된다. 이미지의 이름이 movie_image라면 경로는 @drawable/movie_image이다.