<!--
ImageView
Activity에 이미지를 표시하기 위한 뷰
PNG, JPEG, GIF형식의 이미지들을 표현

R.drawable.southorea - 자바의 사용형식
@drawable/southkorea - xml의 사용형식
소문자로된 영문과 숫자만 제목으로 설정 가능

-->

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/southkorea"
android:id="@+id/imageView"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />


Posted by kunoo
,