-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>

qrcodeキャプチャカメラを表示するために作成された外部apkライブラリから取得した画像とqrcodeリーダーの下を表示する必要があります。
imagevievを削除した場合にのみ機能します。
なんで?画像とインクルードが必要です。ありがとう

4

1 に答える 1

1

ImageView に次のような属性を追加する必要があります。

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