DetailPlayer.java 4.4 KB
Newer Older
S
shuyu 已提交
1 2 3 4
package com.example.gsyvideoplayer;

import android.os.Bundle;
import android.os.Handler;
S
1.3.2  
shuyu 已提交
5
import android.support.v4.app.FragmentActivity;
S
shuyu 已提交
6 7 8 9 10 11 12 13 14 15
import android.support.v4.widget.NestedScrollView;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.RelativeLayout;

import com.shuyu.gsyvideoplayer.GSYVideoPlayer;
import com.shuyu.gsyvideoplayer.utils.OrientationUtils;
import com.shuyu.gsyvideoplayer.video.StandardGSYVideoPlayer;
S
1.2.4  
shuyu 已提交
16
import com.transitionseverywhere.TransitionManager;
S
shuyu 已提交
17 18 19 20 21 22

import butterknife.BindView;
import butterknife.ButterKnife;

import static com.example.gsyvideoplayer.utils.CommonUtil.setViewHeight;

S
1.3.2  
shuyu 已提交
23
public class DetailPlayer extends FragmentActivity {
S
shuyu 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55

    @BindView(R.id.post_detail_nested_scroll)
    NestedScrollView postDetailNestedScroll;
    @BindView(R.id.detail_player)
    StandardGSYVideoPlayer detailPlayer;
    @BindView(R.id.activity_detail_player)
    RelativeLayout activityDetailPlayer;

    private boolean isFull;

    private OrientationUtils orientationUtils;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_detail_player);
        ButterKnife.bind(this);

        String url = "http://baobab.wdjcdn.com/14564977406580.mp4";
        detailPlayer.setUp(url, true, "");

        //增加封面
        ImageView imageView = new ImageView(this);
        imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
        imageView.setImageResource(R.mipmap.xxx1);
        detailPlayer.setThumbImageView(imageView);

        resolveNormalVideoUI();

        orientationUtils = new OrientationUtils(this, detailPlayer);
        orientationUtils.setEnable(false);

S
1.1.4  
shuyu 已提交
56 57
        detailPlayer.setIsTouchWiget(true);

S
1.3.2  
shuyu 已提交
58 59 60 61 62

        detailPlayer.setRotateViewAuto(false);
        detailPlayer.setLockLand(true);
        detailPlayer.setShowFullAnimation(false);

S
shuyu 已提交
63 64 65
        detailPlayer.getFullscreenButton().setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
S
1.3.2  
shuyu 已提交
66 67 68 69
                //第一个true是否需要隐藏actionbar,第二个true是否需要隐藏statusbar
                detailPlayer.startWindowFullscreen(DetailPlayer.this, true, true);
                //这是以前旧的方式
                //toDo();
S
shuyu 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
            }
        });

        detailPlayer.getBackButton().setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                toNormal();
            }
        });

    }

    @Override
    public void onBackPressed() {
        if (isFull) {
            detailPlayer.getBackButton().performClick();
            return;
        }
        super.onBackPressed();
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        GSYVideoPlayer.releaseAllVideos();
    }

    private void toFull() {
        isFull = true;
S
1.2.4  
shuyu 已提交
99 100 101

        TransitionManager.beginDelayedTransition(activityDetailPlayer);

S
shuyu 已提交
102 103 104 105 106 107 108 109 110 111 112 113 114
        setViewHeight(detailPlayer, ViewGroup.LayoutParams.MATCH_PARENT,
                ViewGroup.LayoutParams.MATCH_PARENT);
        resolveFullVideoUI();
        orientationUtils.setEnable(true);
    }

    private void toNormal() {
        isFull = false;
        orientationUtils.setEnable(false);
        int delay = orientationUtils.backToProtVideo();
        new Handler().postDelayed(new Runnable() {
            @Override
            public void run() {
S
1.2.4  
shuyu 已提交
115
                TransitionManager.beginDelayedTransition(activityDetailPlayer);
S
shuyu 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
                setViewHeight(detailPlayer, ViewGroup.LayoutParams.MATCH_PARENT,
                        (int) getResources().getDimension(R.dimen.post_media_height));
            }
        }, delay);
    }

    private void toDo() {
        if (isFull) {
            toNormal();
        } else {
            toFull();
        }
    }

    private void resolveNormalVideoUI() {
        //增加title
        detailPlayer.getTitleTextView().setVisibility(View.GONE);
        detailPlayer.getTitleTextView().setText("测试视频");
        detailPlayer.getBackButton().setVisibility(View.GONE);
    }

    private void resolveFullVideoUI() {
        detailPlayer.getTitleTextView().setVisibility(View.VISIBLE);
        detailPlayer.getTitleTextView().setText("测试视频");
        detailPlayer.getBackButton().setVisibility(View.VISIBLE);
    }

}