2022-07-05 12:38:35 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2022-10-12 10:02:27 -03:00
|
|
|
|
2022-07-05 12:38:35 -03:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/blur"
|
2022-10-12 10:02:27 -03:00
|
|
|
android:layout_width="wrap_content"
|
2022-07-05 12:38:35 -03:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:importantForAccessibility="no"
|
|
|
|
android:scaleType="centerCrop" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/image"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:importantForAccessibility="no"
|
|
|
|
android:scaleType="fitCenter" />
|
2022-10-12 10:02:27 -03:00
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.stories.StoryTextPostView
|
|
|
|
android:id="@+id/text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.video.VideoPlayer
|
|
|
|
android:id="@+id/video"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
</FrameLayout>
|