主布局
<android.support.v7.widget.RecyclerView
android:id="@+id/recycleview"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_above="@+id/zj"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_weight="8" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="0dp">
<CheckBox
android:id="@+id/cb_01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/js"
android:layout_alignBottom="@+id/js"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:text="全选/全不选"
android:textSize="20sp" />
<TextView
android:id="@+id/zj"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="总价:"
android:textSize="20sp" />
<Button
android:id="@+id/js"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_alignTop="@+id/zj"
android:text="结算"
android:textSize="20sp" />
</RelativeLayout>
外部布局
<CheckBox
android:id="@+id/cb_02"
android:text="商家一"
android:textSize="20sp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<android.support.v7.widget.RecyclerView
android:id="@+id/recycleview01"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
内部布局
<CheckBox
android:id="@+id/cb_03"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/my_image_view"
android:layout_width="90dp"
android:layout_height="90dp"
fresco:roundAsCircle="true"
fresco:placeholderImage="@mipmap/ic_launcher"
/>
<TextView
android:id="@+id/price"
android:textSize="20sp"
android:text="price"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<com.example.admin.likaibo.togglebutton
android:id="@+id/toggle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
加减布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_height="match_parent">
<Button
android:id="@+id/jian"
android:textSize="20sp"
android:text="-"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/num"
android:text="1"
android:textSize="20sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:id="@+id/jia"
android:textSize="20sp"
android:text="+"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>