如何在旋转Android设备时设置全屏视频

时间:2016-10-14 05:32:20

标签: android android-layout android-videoview

使用视频视图从外部卡播放MP4视频文件。当我旋转我的Android设备视频不显示全屏。我正在研究android 4.4 normal,包括下面的ui输出屏幕 enter image description here  当我旋转手机 enter image description here

@if (Session::has('message'))
    <div class="alert alert-info" id="hider">
        {{ Session::get('message') }}   
    </div>
@endif

我的代码中是否有任何布局问题

4 个答案:

答案 0 :(得分:1)

请试试这个。我希望这可能会产生你想要的结果。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          xmlns:app="http://schemas.android.com/apk/res-auto"
          xmlns:tools="http://schemas.android.com/tools"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:id="@+id/video"
          android:orientation="vertical">

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.v7.widget.Toolbar
        android:id="@+id/videotoolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<RelativeLayout
    android:id="@+id/layout1"

    android:layout_width="match_parent"
    android:layout_height="200dp"
    >

    <VideoView
        android:id="@+id/VideoView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true" />

</RelativeLayout>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/layout1"
    android:weightSum="1">

    <TextView
        android:text="About Course"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:textSize="16sp"
        android:layout_marginLeft="19dp"
        android:layout_marginStart="19dp"
        android:layout_marginTop="70dp"
        android:id="@+id/aboutcuz" />

    <TextView
        android:text="TextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="48dp"
        android:id="@+id/about_course_text"
        android:fontFamily="Arial"
        android:layout_below="@+id/aboutcuz"
        android:layout_alignLeft="@+id/aboutcuz"
        android:layout_alignStart="@+id/aboutcuz"
        android:layout_marginLeft="43dp"
        android:layout_marginStart="43dp"
        android:gravity="center"
        />

    <TextView
        android:text="TextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:lines="2"
        android:scrollHorizontally="true"
        android:ellipsize="end"
        android:id="@+id/coursenamev"
        android:textSize="18sp"
        android:layout_alignParentTop="true"
        android:layout_alignLeft="@+id/aboutcuz"
        android:layout_alignStart="@+id/aboutcuz"
        android:layout_marginTop="18dp" />
    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_marginTop="60dp"

        android:background="@android:color/darker_gray"/>
    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_below="@+id/aboutcuz"
        android:layout_marginTop="10dp"

        android:background="@android:color/darker_gray"/>


</RelativeLayout>

答案 1 :(得分:0)

制作自定义VideoView类

public class FullScreenVideoView extends VideoView {
    public FullScreenVideoView(Context context) {
        super(context);
    }

    public FullScreenVideoView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public FullScreenVideoView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec){
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        setMeasuredDimension(widthMeasureSpec, heightMeasureSpec);
    }

    public void setFixedVideoSize(int width, int height)
    {
        getHolder().setFixedSize(width, height);
    }
}

并在VideoView的布局中设置

<yourpackage.FullScreenVideoView
                android:id="@+id/VideoView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                />

答案 2 :(得分:0)

做这样的事情

params[:reset][:email]

当你改变方向改变重量时,你可以达到你想要的效果。

答案 3 :(得分:-1)

这很简单。您可以在创建新的“全屏活动”时找到一个示例。

这是这样的:

// Hide UI first
    ActionBar actionBar = getSupportActionBar();
    if (actionBar != null) {
        actionBar.hide();
    }
    mContentView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE
            | View.SYSTEM_UI_FLAG_FULLSCREEN
            | View.SYSTEM_UI_FLAG_LAYOUT_STABLE
            | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
            | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
            | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);