当我尝试在我的模拟器上使用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>
答案 0 :(得分:9)
实际上问题是您没有定义LinearLayout.
的方向默认情况下它是水平的,并且您已将按钮的layout_width
设置为fill_parent
,因此它填充了整个区域。您应该将方向设置为垂直方向,或者在按钮标记中设置android:layout_width="wrap_content"
。
答案 1 :(得分:0)
您需要做的就是将按钮设为layout_width
至wrap_content
android:layout_width="wrap_content"