我无法在Android应用程序中加载图像..(我是Android和Java的初学者)..它是一个非常简单的启动应用程序来显示图像和文本消息..
当应用程序加载时(在模拟器中)我只能看到文本msg而没有图像:(
你能帮帮我..
这是我的 layout / 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>