fragment_detail.xml 902 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/white">
  6. <TextView
  7. android:id="@+id/text_no_data"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_gravity="center"
  11. android:maxLines="2"
  12. android:ellipsize="end"
  13. android:text="@string/text_no_data"
  14. android:textColor="@color/black_87pc"
  15. android:visibility="gone"/>
  16. <android.support.v7.widget.RecyclerView
  17. android:id="@+id/recycler_detail"
  18. android:layout_width="match_parent"
  19. android:layout_height="match_parent"
  20. android:paddingTop="4dp"
  21. android:paddingBottom="8dp"
  22. android:clipToPadding="false"/>
  23. </FrameLayout>