画面幅全体をカバーする surfaceView をレイアウトに表示し、surfaceView の上に TextView を表示し、SurfaceView の下に別の水平レイアウトを表示したいと考えています。
以下は、私の Eclipse Android GUI デザイナーのスナップショットです。
以下は、Galaxy S3 デバイスの実際の GUI のスナップショットです。
以下は、この GUI/アクティビティの更新されたレイアウト xml です。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayoutForPreview"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- SurfaceView should cover all the screens width -->
<SurfaceView
android:id="@+id/surfaceViewBarcodeScanner"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<!-- TextView should be above SurfaceView -->
<!-- LinearLayout will contain linear toolbar -->
<TextView
android:id="@+id/mytext"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/mbackground2"
android:gravity="center_horizontal"
android:padding="20dip"
android:textColor="@color/mytextcolor" />
</FrameLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="62dp"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:background="@drawable/scanner_bottom" >
</LinearLayout>
</RelativeLayout>
ありがとう