3

Vitamio でライブ ストリーミングを再生しようとしています。いくつかの問題を修正しましたが、この問題を修正できません。動画がフルスクリーンで再生されません。これらは私のコードです。あなたが私を助けてくれることを願っています!ありがとう、そして私の下手な英語でごめんなさい。

package com.uusoftware.tvizle;

import io.vov.vitamio.widget.MediaController;
import io.vov.vitamio.widget.VideoView;
import android.app.Activity;
import android.net.Uri;
import android.os.Bundle;
import android.view.WindowManager;

public class Trt extends Activity{

    VideoView videoView;

    private void Trt1(){
        String httpLiveUrl = "rtmp://trt-i.mncdn.com/trt1/trt15";   
        videoView = (VideoView) findViewById(R.id.VideoView);
        videoView.setVideoURI(Uri.parse(httpLiveUrl));
        MediaController mediaController = new MediaController(this);
        videoView.setMediaController(mediaController);
        videoView.requestFocus();
        videoView.start();
    }


    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.videolayout);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                WindowManager.LayoutParams.FLAG_FULLSCREEN);
        Trt1();             
    }     
}


<?xml version="1.0" encoding="utf-8"?>`
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <io.vov.vitamio.widget.CenterLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <io.vov.vitamio.widget.VideoView
            android:id="@+id/VideoView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true" />
    </io.vov.vitamio.widget.CenterLayout>

</LinearLayout>
4

5 に答える 5

5

VideoViewを aに入れ、次のようRelativeLayoutに設定します。

<io.vov.vitamio.widget.VideoView 
         android:id="@+id/vitamioView" 
         android:layout_width="fill_parent" 
         android:layout_height="fill_parent" 
         android:layout_alignParentLeft="true" 
         android:layout_alignParentTop="true" 
         android:layout_alignParentRight="true" 
         android:layout_alignParentBottom="true" />
于 2014-05-05T20:54:18.413 に答える
1
if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
        mVideoView.setVideoLayout(io.vov.vitamio.widget.VideoView.VIDEO_LAYOUT_STRETCH, 0);

} else if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
        mVideoView.setVideoLayout(io.vov.vitamio.widget.VideoView.VIDEO_LAYOUT_ORIGIN, 0);
}

@Qadir Hussainに感謝します。それは私のために働きます

于 2014-11-13T02:59:28.720 に答える
1

このメソッドを使用して、アクティビティの onCreate() メソッドでビデオビューを引き伸ばします

mVideoView.setVideoLayout(VideoView.VIDEO_LAYOUT_STRETCH, 0);

onConfigurationChange(); を処理するには

以下のコードを使用

@Override
public void onConfigurationChanged(Configuration newConfig) {
    super.onConfigurationChanged(newConfig);

    if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {

        mVideoView.setVideoLayout(VideoView.VIDEO_LAYOUT_STRETCH, 0);
        Log.e("On Config Change", "LANDSCAPE");

    } else {
        mVideoView.setVideoLayout(VideoView.VIDEO_LAYOUT_STRETCH, 0);
        Log.e("On Config Change", "PORTRAIT");
    }

}

また、これをアクティビティのメニフェスト ファイルに追加します

android:configChanges="orientation|screenSize|smallestScreenSize|keyboard|keyboardHidden|navigation"
于 2014-06-11T07:02:10.690 に答える
0

`パッケージcom.uusoftware.tvizle;

import io.vov.vitamio.widget.MediaController;
import io.vov.vitamio.widget.VideoView;
import android.app.Activity;
import android.net.Uri;
import android.os.Bundle;
import android.view.WindowManager;

public class Trt extends Activity{

private VideoView mVideoView;

private void Trt1(){
    String httpLiveUrl = "rtmp://trt-i.mncdn.com/trt1/trt15";   
    mVideoView = (VideoView) findViewById(R.id.VideoView);
    mVideoView.setVideoURI(Uri.parse(httpLiveUrl));
    MediaController mediaController = new MediaController(this);
    mVideoView.setMediaController(mediaController);
    mVideoView.requestFocus();
    mVideoView.setVideoLayout(VideoView.VIDEO_LAYOUT_STRETCH, 0);
    mVideoView.start();
}


public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.videolayout);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
    Trt1();             
}     

}`

于 2014-08-13T00:16:08.363 に答える
0

ライブ ストリーミングを使用する場合、「mediaplayer_2.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" >

<io.vov.vitamio.widget.CenterLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <SurfaceView
        android:id="@+id/surface"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="center" >
    </SurfaceView>
</io.vov.vitamio.widget.CenterLayout>

</LinearLayout>

このようにして私は私の問題を解決します。

于 2013-10-25T09:42:31.443 に答える