1234567891011121314151617181920212223242526 |
- <?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>
|