26 lines
902 B
XML
26 lines
902 B
XML
<?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"
|
|
android:background="@color/white">
|
|
|
|
<TextView
|
|
android:id="@+id/text_no_data"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:maxLines="2"
|
|
android:ellipsize="end"
|
|
android:text="@string/text_no_data"
|
|
android:textColor="@color/black_87pc"
|
|
android:visibility="gone"/>
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/recycler_detail"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingTop="4dp"
|
|
android:paddingBottom="8dp"
|
|
android:clipToPadding="false"/>
|
|
|
|
</FrameLayout>
|