0

我无法在 android 应用程序中加载图像..(我是 Android 和 Java 的初学者).. 这是一个非常简单的启动应用程序来显示图像和文本消息..

当应用程序加载(在模拟器中)时,我只能看到文本消息而没有图像:(

你能帮我么..

这是我的布局/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>
4

1 回答 1

0

您应该确保在 res 中有可绘制文件夹,并且徽标图像文件在该文件夹中。希望这有帮助。

于 2012-09-20T20:04:26.920 回答