Signal-Android/res/layout/view_once_message_activity.xml

42 lines
1.5 KiB
XML
Raw Normal View History

2019-06-11 08:18:45 +02:00
<?xml version="1.0" encoding="utf-8"?>
2019-09-27 15:10:30 +02:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2019-06-11 08:18:45 +02:00
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-09-27 15:10:30 +02:00
xmlns:tools="http://schemas.android.com/tools"
2019-06-11 08:18:45 +02:00
android:background="@color/core_black">
<ImageView
2019-08-01 01:33:56 +02:00
android:id="@+id/view_once_image"
2019-06-11 08:18:45 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitCenter"/>
2019-09-27 15:10:30 +02:00
<org.thoughtcrime.securesms.video.VideoPlayer
android:id="@+id/view_once_video"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="match_parent" />
2019-06-11 08:18:45 +02:00
<ImageView
2019-08-01 01:33:56 +02:00
android:id="@+id/view_once_close_button"
2019-06-11 08:18:45 +02:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="19dp"
android:layout_marginStart="19dp"
android:tint="@color/core_white"
app:srcCompat="@drawable/ic_x"/>
2019-09-27 15:10:30 +02:00
<TextView
android:id="@+id/view_once_duration"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|end"
android:layout_marginTop="15dp"
android:layout_marginEnd="16dp"
android:textAppearance="@style/ViewOnceVideo.Duration"
android:visibility="gone"
tools:visibility="visible"
tools:text="00:23" />
2019-06-11 08:18:45 +02:00
</FrameLayout>