我想用一些图像来提供帮助。每个图像将用于一个活动的位置。我在可绘制目录中有图像,并使用不同配置的别名来引用它们。图片的扩展名是png。
在 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>
我在运行时得到白色视图而不是我引用的图像?这发生在我的测试设备上。
但是,当我在模拟器上测试时,它没有问题