2019-06-11 02:18:45 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@color/core_black">
|
|
|
|
|
|
|
|
<ImageView
|
2019-07-31 19:33:56 -04:00
|
|
|
android:id="@+id/view_once_image"
|
2019-06-11 02:18:45 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scaleType="fitCenter"/>
|
|
|
|
|
|
|
|
<ImageView
|
2019-07-31 19:33:56 -04:00
|
|
|
android:id="@+id/view_once_close_button"
|
2019-06-11 02:18:45 -04: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"/>
|
|
|
|
|
|
|
|
</FrameLayout>
|