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-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"
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
</android.support.v7.widget.AppCompatSpinner>
|
|
|
|
|
|
|
|
|
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>
|