GithubHelp home page GithubHelp logo

03050903 / videocontrollerview Goto Github PK

View Code? Open in Web Editor NEW

This project forked from brucetoo/videocontrollerview

0.0 1.0 0.0 5.26 MB

Custom media controller view https://github.com/brucetoo/VideoControllerView

Java 100.00%

videocontrollerview's Introduction

Expandable custom Media Controller View

Android Arsenal

FINAL EFFECT

YOUTUBE Control brightness or volume,or progress

volume

##Feature

  • Single tap to show VideoControllerView

  • Swipe up-down left edge of screen to control Brightness

  • Swipe up-down right edge of screen to control Volume

  • Swipe left-right to control media progress

  • Show loading before media prepared(In fact,it's not necessary to build in ControllerView)

  • More custom things may be added(Like custom icon,swipe Constant of brightness,volume,progress.)

In short,easy to integrate


##How to use

1.init VideoControllerView like this

controller = new VideoControllerView(this);

    /**
     * Implement VideoMediaController.MediaPlayerControl
      */
    @Override
    public boolean canPause() {
        return true;
    }

    @Override
    public boolean canSeekProgress() {
        return true;
    }


    @Override
    public int getBufferPercentage() {
        return 0;
    }

    @Override
    public int getCurrentPosition() {
         if(null != mMediaPlayer)
           return mMediaPlayer.getCurrentPosition();
        else
           return 0;
    }

    @Override
    public int getDuration() {
        if(null != mMediaPlayer)
            return mMediaPlayer.getDuration();
        else
            return 0;
    }

    @Override
    public boolean isPlaying() {
        if(null != mMediaPlayer)
            return mMediaPlayer.isPlaying();
        else
            return false;
    }

    @Override
    public void pause() {
        if(null != mMediaPlayer) {
            mMediaPlayer.pause();
        }

    }

    @Override
    public void seekTo(int i) {
        if(null != mMediaPlayer) {
            mMediaPlayer.seekTo(i);
        }
    }

    @Override
    public void start() {
        if(null != mMediaPlayer) {
            mMediaPlayer.start();
        }
    }

    @Override
    public boolean isFullScreen() {
        return getRequestedOrientation() == ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE ? true : false;
    }

    @Override
    public void toggleFullScreen() {
       if(isFullScreen()){
           setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
       }else {
           setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
       }
    }

    @Override
    public void exit() {
        resetPlayer();
        finish();
    }

    @Override
    public String getTopTitle() {
        return "buck bunny".toUpperCase();
    }
    // End VideoMediaController.MediaPlayerControl

2.after media prepared

// Implement MediaPlayer.OnPreparedListener
    @Override
    public void onPrepared(MediaPlayer mp) {
       //set media player control listen
       controller.setMediaPlayerControlListener(this);
       //set anchor view that hold VideoControllerView
       controller.setAnchorView((FrameLayout) findViewById(R.id.videoSurfaceContainer));
       //if you want to use gesture to control brightness,volume,progress..set this 
       controller.setGestureListener(this);
       //start media
       mMediaPlayer.start();
    }
// End MediaPlayer.OnPreparedListener

#THANKS ExampleMediaController from ExampleMediaController

License

Copyright 2015 Bruce too

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

See LICENSE file for details.

videocontrollerview's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.