mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-25 05:57:59 +01:00
23 lines
861 B
XML
23 lines
861 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout android:id="@+id/video_holder"
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="100dp">
|
||
|
|
||
|
<SurfaceView
|
||
|
android:id="@+id/video_surface"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerInParent="true"
|
||
|
android:background="@android:color/transparent"/>
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/video_play_outline"
|
||
|
android:layout_width="@dimen/play_outline_size_big"
|
||
|
android:layout_height="@dimen/play_outline_size_big"
|
||
|
android:layout_centerInParent="true"
|
||
|
android:background="@android:color/transparent"
|
||
|
android:src="@mipmap/play_outline_big"/>
|
||
|
|
||
|
</RelativeLayout>
|