55 lines
1.8 KiB
XML
55 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:id="@+id/top_card"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:cardBackgroundColor="@color/white"
|
|
app:cardCornerRadius="8dp"
|
|
app:cardElevation="0dp">
|
|
|
|
<TextView
|
|
android:id="@+id/top_noback"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="18dp"
|
|
android:text="@string/message"
|
|
android:textColor="@color/black3"
|
|
android:textSize="24sp"
|
|
android:textStyle="bold" />
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
|
|
<FrameLayout
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="400dp"
|
|
android:layout_below="@id/top_card"
|
|
android:layout_marginTop="-10dp"
|
|
android:background="@color/white"
|
|
android:paddingTop="10dp" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/lt_nodata_msg"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="400dp"
|
|
android:layout_marginTop="-10dp"
|
|
android:layout_below="@id/top_card"
|
|
android:layout_centerVertical="true"
|
|
android:background="@color/white"
|
|
android:gravity="center"
|
|
android:visibility="visible">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@mipmap/img_no_new" />
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |