2

ビデオを再生しようとしていて、カメラのプレビューで表示したいと考えています。ビデオは透明な背景で再生され、ビデオ コントロールも表示されますが、ビデオは表示されません。動画の再生音は聞こえます。

これが私のコードです:

// CameraSampleActivity.java, OnCreate Method

 View layout_Initialization= (View)findViewById(R.id.layout_Initialization);
 layout_Initialization.setVisibility(View.VISIBLE);

View custom_Video_Dialog=(View)findViewById(R.id.videoLayout);
custom_Video_Dialog.setVisibility(View.GONE);

//Code related to camera and camera preview here in the OnCreate method


// CameraSampleActivity.java This code is executed when video needs to be played

View custom_Video_Dialog=(View)findViewById(R.id.videoLayout);
custom_Video_Dialog.setVisibility(View.VISIBLE);

VideoView mVideoView = (VideoView) findViewById(R.id.myvideoview);
mVideoView.setMediaController(new MediaController(CameraSampleActivity.this));
mVideoView.setVideoURI(Uri.parse(firstVideo.getUrl()));

 mVideoView.setOnPreparedListener(new OnPreparedListener() {

                    public void onPrepared(MediaPlayer arg0) {
                        mVideoView.setFocusable(true);
                        mVideoView.requestFocus();
                        mVideoView.start();
                    }
                });

// ここに main.xml があります

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/main_layout" android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:background="@drawable/transparent"
    android:orientation="vertical" xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads">
    <FrameLayout android:layout_width="fill_parent"
        android:layout_height="0px" android:layout_weight="1">
        <FrameLayout android:id="@+id/cameraPreview"
            android:layout_width="fill_parent" android:layout_height="fill_parent" />

        <RelativeLayout android:id="@+id/layout_Initialization"
            android:layout_width="fill_parent" android:layout_height="fill_parent"
            android:background="@drawable/transparent" android:orientation="horizontal">
.................................
.................................
....................... .........        
        </RelativeLayout>
        <RelativeLayout
                android:id="@+id/videoLayout"
                android:layout_width="fill_parent"
                android:layout_height="280dp" >

            <VideoView android:id="@+id/myvideoview"
                android:layout_width="fill_parent" android:layout_height="180dp"
                android:layout_alignParentTop="true" />
            <Button android:id="@+id/videoListButton" android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_alignParentLeft="true" android:text="List" />
        </RelativeLayout>

    </FrameLayout>



</LinearLayout>

mediaController に渡されるコンテキストが間違っていると思います。frameLayout の外側で videoLayout を使用すると、ビデオは表示されますが透明ではないことに注意してください。Framelayout 内に配置すると、透明度が得られ、ビデオが表示され、背面にカメラのプレビューが表示されます。これは私が望むものです。何か助けはありますか?

4

1 に答える 1

0

カメラのビデオ プレビューに TextView を重ねて、非常によく似た処理を行うことができました。

Linear Layouts とは異なり、Relative Layouts では、宣言の順序は Z オーダーを定義しません。両方のビューを XML で宣言し、Activity の onCreate メソッドにプログラムでオーバーレイすることで、Camera Preview の上にテキストビューをオーバーレイすることができました。

カメラ プレビュー フレーム レイアウトの上にオーバーレイしたい素敵な透明な背景を持つ TextView を持つ XML があるとします。

<RelativeLayout>
      <TextView
        android:id="@+id/txtnombotiga"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Ola ke ase"
        android:textColor="#000000"
        android:textSize="16sp"    
        android:background="#55ffffff" 
       />
  <FrameLayout
      android:id="@+id/cameraPreview"
      android:layout_width="match_parent"
      android:layout_height="240dp">     
  </FrameLayout>
</RelativeLayout>

このままにしておくと、何があってもカメラがテキストを覆い隠してしまいます :( それを解決するには、プログラムを使用してみましょう。1) TextView をその親レイアウトから切り離し、2) 後でカメラのフレーム レイアウトアタッチします。最初にカメラを取り付けます。

コードはこちら

OnCreate(){ ...ブラアブラアアア...

//Create camera instance and reference to our frame Layout
mPreview = new CameraPreview(this, mCamera, previewCb, autoFocusCB);        
FrameLayout preview = (FrameLayout) findViewById(R.id.cameraPreview);
//Add camera to the Frame Layout
preview.addView(mPreview);
//Get reference to the TextView you want to overlay and type something funny
TextView txt=(TextView)findViewById(R.id.txtnombotiga);     
txt.setText("ola keee aseee!");
//1) Step 1, here comes the magic! dettach the textView from its original Layout
((ViewGroup)txt.getParent()).removeView(txt);
//1) Step 2, voila! attach it to the View, order matters here so it will appear on 
//top of the camera!
preview.addView(txt);

これが一般的な方法です。詳細が必要な場合はお知らせください。仕事で締め切りに間に合わせる必要があるので、頭に浮かんだ最初の解決策を使用しますが、最もエレガントで効率的ではない場合もあります。より良い方法を知っている場合は、私たちと共有してください!

于 2014-04-04T17:00:42.327 に答える