aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout/activity_fullscreen_message.xml
blob: 183513196e54b03fb33aa616d96d1299d2700db1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@android:color/black">

    <uk.co.senab.photoview.PhotoView
        android:id="@id/message_image_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:adjustViewBounds="true"
        android:visibility="gone" />

    <com.github.rtoshiro.view.video.FullscreenVideoLayout
        android:id="@id/message_video_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="gone" />
</LinearLayout>