├── .gitignore ├── AndroidManifest.xml ├── README.md ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ ├── ic_launcher.png │ ├── ic_media_fullscreen_shrink.png │ ├── ic_media_fullscreen_stretch.png │ ├── ic_media_pause.png │ └── ic_media_play.png ├── layout │ ├── activity_main.xml │ ├── activity_video_player.xml │ └── media_controller.xml ├── menu │ └── main.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── uk └── co └── brightec └── example └── mediacontroller ├── MainActivity.java ├── VideoControllerView.java └── VideoPlayerActivity.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/README.md -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_media_fullscreen_shrink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/drawable-xhdpi/ic_media_fullscreen_shrink.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_media_fullscreen_stretch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/drawable-xhdpi/ic_media_fullscreen_stretch.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_media_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/drawable-xhdpi/ic_media_pause.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_media_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/drawable-xhdpi/ic_media_play.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/layout/activity_video_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/layout/activity_video_player.xml -------------------------------------------------------------------------------- /res/layout/media_controller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/layout/media_controller.xml -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/menu/main.xml -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/uk/co/brightec/example/mediacontroller/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/src/uk/co/brightec/example/mediacontroller/MainActivity.java -------------------------------------------------------------------------------- /src/uk/co/brightec/example/mediacontroller/VideoControllerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/src/uk/co/brightec/example/mediacontroller/VideoControllerView.java -------------------------------------------------------------------------------- /src/uk/co/brightec/example/mediacontroller/VideoPlayerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightec/ExampleMediaController/HEAD/src/uk/co/brightec/example/mediacontroller/VideoPlayerActivity.java --------------------------------------------------------------------------------