trade_list_fragment.xml 1.2 KB

123456789101112131415161718192021222324252627282930
  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. <LinearLayout
  8. android:id="@+id/trade_list_notifications_layout"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:orientation="vertical"
  12. tools:layout_editor_absoluteY="0dp"
  13. tools:layout_editor_absoluteX="8dp" />
  14. <android.support.v7.widget.RecyclerView
  15. android:id="@+id/trade_list_recyclerview"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"
  18. tools:layout_editor_absoluteY="8dp"
  19. tools:layout_editor_absoluteX="8dp"
  20. android:layout_alignParentBottom="true"
  21. android:layout_alignParentRight="true"
  22. android:layout_alignParentEnd="true"
  23. android:layout_alignParentTop="true"
  24. android:layout_alignParentLeft="true"
  25. android:layout_alignParentStart="true"
  26. android:paddingLeft="8dp"
  27. android:paddingRight="8dp"/>
  28. </RelativeLayout>