ImageView没有出现在Android上

时间:2011-03-21 04:50:47

标签: android

当我尝试在我的模拟器上使用ImageView显示图像时,它会显示出来。 添加按钮后,图像不会显示。

我不知道这是否有帮助,但我的XML在工作时有用:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <ImageView android:id="@+id/ImageView01"
        android:layout_height="wrap_content" 
        android:layout_width="fill_parent"/>
</LinearLayout>

并且没有工作:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    xmlns:android="http://schemas.android.com/apk/res/android">
     <Button 
        android:id="@+id/backbutton"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:text="Back"/>
    <ImageView android:id="@+id/ImageView01"
        android:layout_height="wrap_content" 
        android:layout_width="fill_parent"/>
</LinearLayout>

2 个答案:

答案 0 :(得分:9)

实际上问题是您没有定义LinearLayout.的方向默认情况下它是水平的,并且您已将按钮的layout_width设置为fill_parent,因此它填充了整个区域。您应该将方向设置为垂直方向,或者在按钮标记中设置android:layout_width="wrap_content"

答案 1 :(得分:0)

您需要做的就是将按钮设为layout_widthwrap_content

android:layout_width="wrap_content"