diff options
author | Allan Wang <me@allanwang.ca> | 2017-11-12 02:48:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-12 02:48:36 -0500 |
commit | 2b51bc4bfa86863ed14b550fe3281840587ab038 (patch) | |
tree | 0fd7276e326ed0901b1af980d07d57f3bbb7d7eb /app/src/main/res/layout/view_video.xml | |
parent | ec7fdc2521463d0a773bb9d0be454f3b2a60eee3 (diff) | |
download | frost-2b51bc4bfa86863ed14b550fe3281840587ab038.tar.gz frost-2b51bc4bfa86863ed14b550fe3281840587ab038.tar.bz2 frost-2b51bc4bfa86863ed14b550fe3281840587ab038.zip |
enhancement/video-player (#480)v1.6.3
* Add toolbar visibility toggle and draw it over viewer
* Set contract bindings once available
* Fix video url param error and prepare progressanimator
* Add gif support and better transitions
* Interface a lot of things
* Reorder back press
* Clean up files and fix selector
* Add gif support
* Redraw bounds when necessary
Diffstat (limited to 'app/src/main/res/layout/view_video.xml')
-rw-r--r-- | app/src/main/res/layout/view_video.xml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/app/src/main/res/layout/view_video.xml b/app/src/main/res/layout/view_video.xml index b8226ff2..ca256477 100644 --- a/app/src/main/res/layout/view_video.xml +++ b/app/src/main/res/layout/view_video.xml @@ -14,16 +14,10 @@ android:layout_height="match_parent" android:clickable="false" /> - <android.support.v7.widget.Toolbar - android:id="@+id/video_toolbar" - android:layout_width="match_parent" - android:layout_height="?attr/actionBarSize" /> - <com.pitchedapps.frost.views.FrostVideoView android:id="@+id/video" android:layout_width="match_parent" android:layout_height="match_parent" - android:layout_marginTop="?attr/actionBarSize" android:background="@android:color/transparent" android:theme="@style/FrostTheme.Video" app:useDefaultControls="true" @@ -38,5 +32,10 @@ </com.pitchedapps.frost.views.FrostVideoView> + <android.support.v7.widget.Toolbar + android:id="@+id/video_toolbar" + android:layout_width="match_parent" + android:background="@drawable/exomedia_default_controls_interactive_background" + android:layout_height="?attr/actionBarSize" /> </merge>
\ No newline at end of file |