반응형
Notice
Recent Posts
Recent Comments
Link
NOW OR NEVER
[Android] Image view에 등록된 사진이 안보이는 Error 본문
반응형
Image view에 등록된 사진이 안보이는 현상 해결
- 안보이는 현상이 발생한 코드
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:src="@drawable/sample_img" />
- 해결 방법 : tools:src="@drawable/sample_img" 이부분을 android:src="@drawable/sample_img" 이렇게 변경
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/sample_img" />
'Android' 카테고리의 다른 글
[Android] FireBase 기본 설정 & CRUD (0) | 2023.07.31 |
---|---|
[Android] Retrofit (0) | 2023.07.27 |
[Android] ViewPager2 Fragment 안보이는 Error (0) | 2023.07.27 |
[Android] SQLite 외부 DB파일 이용해서 안드로이드 내 DB로 사용하기 (0) | 2023.07.26 |
[Android] Material 3 Design (0) | 2023.07.24 |
Comments