summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res/layout/activity_video_player.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-06-02 14:25:05 +0300
committerAndrew Dolgov <[email protected]>2017-06-02 14:25:05 +0300
commit047bb1cc37d189b24b3269d13397f83bc2797d2d (patch)
tree0593153e2096f9daa7dd89ca2495647a8f029971 /org.fox.ttrss/src/main/res/layout/activity_video_player.xml
parentbbab856e3fd0066705263764bb846b4a6d7b7b91 (diff)
unified gallery pager for videos and image files
Diffstat (limited to 'org.fox.ttrss/src/main/res/layout/activity_video_player.xml')
-rw-r--r--org.fox.ttrss/src/main/res/layout/activity_video_player.xml46
1 files changed, 0 insertions, 46 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/activity_video_player.xml b/org.fox.ttrss/src/main/res/layout/activity_video_player.xml
deleted file mode 100644
index 1fbeb587..00000000
--- a/org.fox.ttrss/src/main/res/layout/activity_video_player.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:fitsSystemWindows="true"
- android:background="@android:color/black"
- tools:context="org.fox.ttrss.VideoPlayerActivity">
-
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@+id/toolbar">
-
- <SurfaceView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:id="@+id/video_player" />
-
- <ImageView
- android:id="@+id/video_player_cover"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
-
- <ProgressBar
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/video_loading"
- android:layout_gravity="center"
- android:indeterminate="true" />
-
- <ImageView
- android:id="@+id/video_player_overflow"
- android:clickable="true"
- android:layout_width="wrap_content"
- android:layout_height="26dp"
- android:layout_weight="0"
- android:background="@drawable/ripple"
- android:src="@drawable/ic_dots_vertical"
- android:layout_gravity="top|right"
- android:layout_marginRight="8dp"
- android:layout_marginTop="@dimen/activity_vertical_margin" />
- </FrameLayout>
-
- <include layout="@layout/toolbar" android:id="@+id/toolbar" />
-
-</RelativeLayout>