activity_mychild.xml
931 Bytes
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<include layout="@layout/top"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/child_recycle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
>
</android.support.v7.widget.RecyclerView>
<TextView
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:text="添加绑定账号"
android:textColor="@color/white"
android:textSize="@dimen/txtsize_title"
android:gravity="center"
android:background="@drawable/rudiobtn"
/>
</LinearLayout>