trade_list_fragment.xml 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:orientation="vertical" android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@color/color_background"
  7. android:fitsSystemWindows="false">
  8. <LinearLayout
  9. android:id="@+id/trade_list_notifications_layout"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:orientation="vertical"
  13. tools:layout_editor_absoluteY="0dp"
  14. tools:layout_editor_absoluteX="8dp" />
  15. <android.support.v7.widget.RecyclerView
  16. android:id="@+id/trade_list_recyclerview"
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. tools:layout_editor_absoluteY="8dp"
  20. tools:layout_editor_absoluteX="8dp"
  21. android:layout_alignParentBottom="true"
  22. android:layout_alignParentRight="true"
  23. android:layout_alignParentEnd="true"
  24. android:layout_alignParentTop="true"
  25. android:layout_alignParentLeft="true"
  26. android:layout_alignParentStart="true"
  27. android:paddingLeft="8dp"
  28. android:paddingRight="8dp"/>
  29. </RelativeLayout>