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"
|
2022-10-14 10:31:55 -03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-07-05 12:38:35 -03:00
|
|
|
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-20 21:25:22 -04:00
|
|
|
android:layout_width="match_parent"
|
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"
|
2022-10-14 10:31:55 -03:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:playerLayoutId="@layout/story_video_player" />
|
2022-10-12 10:02:27 -03:00
|
|
|
|
|
|
|
</FrameLayout>
|