Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
Mọi người giúp em với. Em load một tấm ảnh tên là "img.png" trong drawable, trong phần preview thì nó vẫn load được, nhưng khi chạy thì bị lỗi. Một đoạn trong logcat:
" Caused by: android.content.res.Resources$NotFoundException: Resource "com.example.nguye.login:drawable/img" (7f060057) is not a Drawable (color or path): TypedValue{t=0x1/d=0x7f060057 a=-1 r=0x7f060057}" mặc dù trong code xml em đã viết đúng đường dẫn
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" android:background="#00CCFF">
<ImageView
android:id="@+id/img1"
android:layout_centerHorizontal="true"
android:layout_marginTop="100dp"
android:layout_width="140dp"
android:layout_height="140dp"
android:src="@drawable/img"/>
</RelativeLayout>