78 lines
2.5 KiB
XML
78 lines
2.5 KiB
XML
<?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">
|
|
|
|
<View
|
|
android:id="@+id/bg"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:alpha="0"
|
|
android:background="#000" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp">
|
|
|
|
<TextView
|
|
android:id="@+id/titleView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:text="@string/preview"
|
|
android:textColor="@color/white"
|
|
android:textSize="18sp"
|
|
android:textStyle="bold" />
|
|
|
|
<ImageView
|
|
android:id="@+id/btn_close"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:padding="9dp"
|
|
android:src="@mipmap/icon_back"
|
|
app:tint="@color/white" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/count"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical|right"
|
|
android:layout_marginRight="8dp"
|
|
android:gravity="center_vertical"
|
|
android:padding="5dp"
|
|
android:textColor="@color/white"
|
|
android:textSize="14sp" />
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="40dp"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1" />
|
|
|
|
<TextView
|
|
android:id="@+id/btn_delete"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:layout_gravity="bottom"
|
|
android:background="#000"
|
|
android:gravity="center"
|
|
android:text="@string/delete"
|
|
android:textColor="@color/white"
|
|
android:textSize="15sp"
|
|
android:visibility="gone" />
|
|
</LinearLayout>
|
|
</FrameLayout> |