12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?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"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:background="@color/color_background"
- android:orientation="vertical">
- <android.support.design.widget.AppBarLayout
- android:id="@+id/app_bar_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:theme="@style/AppTheme.AppBarOverlay"
- app:elevation="0dp">
- <android.support.v7.widget.Toolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="?attr/actionBarSize"
- android:background="?attr/colorPrimary"
- app:titleTextAppearance="@style/Toolbar.TitleText">
- <include layout="@layout/nim_action_bar_right_clickable_tv" />
- </android.support.v7.widget.Toolbar>
- </android.support.design.widget.AppBarLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="2px"
- android:layout_below="@+id/attribute"
- android:layout_marginTop="10dp"
- android:background="@color/color_split_line_d9d9d9" />
- <RelativeLayout
- android:id="@+id/birth_picker_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- android:paddingBottom="17dp"
- android:paddingTop="17dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="15dp"
- android:text="@string/birthday"
- android:textColor="@color/color_black_333333"
- android:textSize="@dimen/text_size_17" />
- <TextView
- android:id="@+id/birth_value"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_marginRight="15dp"
- android:text="1990-07-03"
- android:textColor="@color/color_black_ff999999"
- android:textSize="@dimen/text_size_17" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="2px"
- android:layout_below="@+id/attribute"
- android:background="@color/color_split_line_d9d9d9" />
- </LinearLayout>
|