我有这个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>
它必须显示一个图像,并且在为查看qrcode捕获相机而创建的外部apk库中的qrcode读取器下方。
它只适用于我删除imageviev
为什么?
我需要图像和包含。
感谢
答案 0 :(得分:1)
您需要为ImageView提供更多属性,如:
android:layout_width="fill_parent"
android:layout_height="fill_parent"