12345678910111213141516171819202122232425262728293031 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:orientation="vertical" android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/color_background"
- android:fitsSystemWindows="false">
- <LinearLayout
- android:id="@+id/trade_list_notifications_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- tools:layout_editor_absoluteY="0dp"
- tools:layout_editor_absoluteX="8dp" />
- <android.support.v7.widget.RecyclerView
- android:id="@+id/trade_list_recyclerview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:layout_editor_absoluteY="8dp"
- tools:layout_editor_absoluteX="8dp"
- android:layout_alignParentBottom="true"
- android:layout_alignParentRight="true"
- android:layout_alignParentEnd="true"
- android:layout_alignParentTop="true"
- android:layout_alignParentLeft="true"
- android:layout_alignParentStart="true"
- android:paddingLeft="8dp"
- android:paddingRight="8dp"/>
- </RelativeLayout>
|