40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:ignore="MissingPrefix"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:layout_above="@+id/ordersBottomLayout">
|
|
|
|
<TextView
|
|
android:id="@+id/shipmentMethodInfoTextView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="12sp"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:textColor="@color/black"/>
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/shippingMethodsRecyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scrollbars="vertical" />
|
|
|
|
</LinearLayout>
|
|
|
|
<include layout="@layout/layout_orders_bottom"/>
|
|
|
|
</RelativeLayout> |