我有幾張圖片需要幫助。每個圖像將用於一項活動。我有可繪製目錄中的圖像,並使用不同配置的別名引用它們。圖像是擴展名是PNG。Android資源不會在運行時顯示
在UI設計器中顯示圖像,但不在運行時顯示。它呈現白色視圖
我的佈局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<View
android:id="@+id/help_img_screen"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:background="@drawable/todays_reminders_help"
android:contentDescription="@string/content_description" />
<CheckBox
android:id="@+id/help_chx_dont_show"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/dont_show_help" />
</LinearLayout>
我繪製todays_reminders_help.xml
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="fill"
android:src="@drawable/todays_reminders_activity_help" >
</bitmap>
我得到白的觀點在運行時不圖像我參考?這發生在我的測試設備上。
然而,當我在這沒有問題,工作的模擬器測試
您是否嘗試清潔和/或重新啓動Eclipse? – znat