123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <android.support.design.widget.AppBarLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <com.sheishuo.app.common.views.BaseToolbar
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_height"
- android:title="设置"
- app:left_text="返回"
- style="@style/fullToolbarStyle"/>
- </android.support.design.widget.AppBarLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="16dp"
- android:orientation="horizontal">
- <TextView
- android:layout_weight="9"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:text="头像"
- android:layout_gravity="center_vertical"/>
- <!--官方给定长宽-->
- <com.netease.nim.uikit.common.ui.widget.SwitchButton
- android:layout_width="58dip"
- android:layout_height="36.67dp"
- android:layout_gravity="end"/>
- </LinearLayout>
- </LinearLayout>
|