我無法加載android應用程序中的圖像..(我在Android和Java非常初學者)..它是一個非常簡單的啓動應用程序來顯示圖像和文本消息..Android Image not displayed
當應用負載(在模擬器)我只能看到文字信息和沒有圖像:(
能否請你幫我..
這裏是我的佈局/ activity_main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/logo" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
</LinearLayout>
logCat中是否有錯誤? –
在logcat文件沒有錯誤:(..它編譯沒有任何錯誤,但沒有圖像顯示確定 - 它是否需要任何「用戶權限」來顯示圖像? –
已嘗試清理您的項目..你允許自動構建? –