2019-02-01 09:19:44 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".Main2Activity">
|
2019-02-14 00:58:03 +08:00
|
|
|
|
|
|
|
|
2019-02-01 09:19:44 +08:00
|
|
|
<LinearLayout
|
|
|
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
|
|
|
>
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/ToolBarTheme.AppBarOverlay">
|
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
app:popupTheme="@style/ToolBarTheme.PopupOverlay" >
|
2019-04-11 18:05:41 +08:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/toolbarTitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="left"
|
2019-02-01 09:19:44 +08:00
|
|
|
|
2019-04-11 18:05:41 +08:00
|
|
|
android:gravity="center"
|
|
|
|
android:text="我是标题"
|
|
|
|
android:textSize="20sp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:visibility="visible"
|
|
|
|
android:textColor="@color/white"
|
2019-04-11 18:20:10 +08:00
|
|
|
|
2019-04-11 18:05:41 +08:00
|
|
|
/>
|
2019-02-16 23:34:42 +08:00
|
|
|
<android.support.v7.widget.AppCompatSpinner
|
|
|
|
android:id="@+id/sexSelect"
|
2019-02-01 09:19:44 +08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-02-16 23:34:42 +08:00
|
|
|
android:minWidth="50dp"
|
|
|
|
style="@style/common_spinner"
|
|
|
|
app:theme="@style/common_spinner"
|
|
|
|
android:popupTheme="@style/common_spinner"
|
|
|
|
android:entries="@array/sex"
|
|
|
|
android:layout_gravity="left|center_vertical"
|
2019-02-19 22:03:42 +08:00
|
|
|
android:layout_weight="0"
|
|
|
|
android:visibility="gone"
|
|
|
|
/>
|
2019-04-14 23:17:31 +08:00
|
|
|
<RadioGroup
|
|
|
|
android:id="@+id/rgSex"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:outlineAmbientShadowColor="@color/colorPrimaryDark"
|
|
|
|
android:outlineSpotShadowColor="@color/lightgray"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
>
|
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/radioButtonBoy"
|
|
|
|
android:text="男生 "
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:checked="true"
|
|
|
|
/>
|
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/radioButtonGirl"
|
|
|
|
android:text="女生"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</RadioGroup>
|
2019-02-16 23:34:42 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2019-02-01 09:19:44 +08:00
|
|
|
</android.support.v7.widget.Toolbar>
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
|
|
|
|
<include layout="@layout/realcontent" />
|
|
|
|
|
2019-02-01 22:48:32 +08:00
|
|
|
|
2019-02-01 09:19:44 +08:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|start"
|
|
|
|
android:layout_margin="@dimen/fab_margin"
|
2019-02-02 17:27:23 +08:00
|
|
|
android:visibility="gone"
|
2019-02-01 09:19:44 +08:00
|
|
|
app:srcCompat="@android:drawable/ic_dialog_email" />
|
|
|
|
|
|
|
|
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|