2016-02-20 21:06:22 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-06-05 23:49:57 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/video_item_holder"
|
2016-02-20 21:06:22 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2016-02-28 23:10:01 +01:00
|
|
|
android:foreground="@drawable/selector">
|
2016-02-20 21:06:22 +01:00
|
|
|
|
2016-02-24 00:08:09 +01:00
|
|
|
<com.simplemobiletools.gallery.MyImageView
|
2016-06-05 23:22:32 +02:00
|
|
|
android:id="@+id/medium_thumbnail"
|
2016-02-20 21:06:22 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"/>
|
|
|
|
|
2016-06-05 23:49:57 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/play_outline"
|
|
|
|
android:layout_width="@dimen/play_outline_size"
|
|
|
|
android:layout_height="@dimen/play_outline_size"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:src="@mipmap/play_outline"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|