-1

我有这个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"
android:orientation="vertical" >
<ImageView
    android:src="@drawable/head"
/> 
<FrameLayout
android:layout_width="200dip" 
android:layout_height="200dip" 
android:layout_gravity="center_horizontal">
    <include layout="@layout/capture"/>
</FrameLayout>

</LinearLayout>

它必须在一个二维码阅读器下方显示一个图像,该二维码阅读器取自为查看二维码捕获相机而创建的外部 apk 库。
它仅在我删除 imageviev 时才有效。
为什么?我需要图像和包含。谢谢

4

1 回答 1

1

您需要为 ImageView 提供更多属性,例如:

android:layout_width="fill_parent"
android:layout_height="fill_parent"
于 2012-06-28T14:44:31.203 回答