2012-09-20 97 views
0

我無法加載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> 
+0

logCat中是否有錯誤? –

+0

在logcat文件沒有錯誤:(..它編譯沒有任何錯誤,但沒有圖像顯示確定 - 它是否需要任何「用戶權限」來顯示圖像? –

+0

已嘗試清理您的項目..你允許自動構建? –

回答

0

您應該確保在res中具有可繪製文件夾,並且徽標圖像文件位於該文件夾中。希望這個幫助。

+0

嗨..文件夾確實存在,文件也是(文件名是logo.png)。在「res」文件夾下,有4個文件夾,drawable-hdpi,drawable-ldpi,drawable-mdpi,drawable-xhdpi,每個文件夾都有這個logo.png文件 - 但沒有顯示出來! –