| | |
| | | android:layout_width="match_parent" |
| | | android:layout_height="match_parent" |
| | | android:orientation="vertical" |
| | | android:background="@color/color_normal_background" |
| | | android:background="?attr/pageBackgroundColor" |
| | | > |
| | | <com.android.app_base.widget.ExtendTitleBar |
| | | android:layout_width="match_parent" |
| | | android:layout_height="wrap_content" |
| | | app:title="个人中心" |
| | | app:title="我的" |
| | | app:titleGravity="left" |
| | | android:elevation="5dp" |
| | | > |
| | |
| | | > |
| | | |
| | | <androidx.constraintlayout.utils.widget.ImageFilterView |
| | | android:id="@+id/iv_head" |
| | | android:layout_width="0dp" |
| | | android:layout_height="0dp" |
| | | android:layout_marginVertical="25dp" |
| | |
| | | app:layout_constraintWidth_percent="0.3" |
| | | app:roundPercent="1" |
| | | app:imageUrl="@{viewModel.infoLiveData.img}" |
| | | android:scaleType="centerCrop" |
| | | /> |
| | | <ImageView |
| | | android:id="@+id/iv_take_photo" |
| | | android:layout_width="wrap_content" |
| | | android:layout_height="wrap_content" |
| | | android:background="@drawable/ic_camera" |
| | | app:layout_constraintStart_toStartOf="@id/iv_head" |
| | | app:layout_constraintEnd_toEndOf="@id/iv_head" |
| | | app:layout_constraintBottom_toBottomOf="@id/iv_head" |
| | | android:layout_marginBottom="-15dp" |
| | | /> |
| | | <View |
| | | android:layout_width="match_parent" |
| | |
| | | android:layout_height="1dp" |
| | | android:background="#33000000" |
| | | /> |
| | | <LinearLayout |
| | | android:layout_width="match_parent" |
| | | android:layout_height="wrap_content" |
| | | android:paddingVertical="12dp" |
| | | android:paddingHorizontal="10dp" |
| | | android:gravity="center_vertical" |
| | | > |
| | | <TextView |
| | | android:layout_width="0dp" |
| | | android:layout_weight="1" |
| | | android:layout_height="wrap_content" |
| | | android:textSize="18sp" |
| | | android:textColor="#FF212121" |
| | | android:text="护眼模式" |
| | | /> |
| | | <com.android.app_base.widget.SwitchButton |
| | | android:id="@+id/switchBtn" |
| | | android:layout_width="wrap_content" |
| | | android:layout_height="wrap_content" |
| | | /> |
| | | |
| | | </LinearLayout> |
| | | |
| | | </LinearLayout> |
| | | <TextView |
| | | android:id="@+id/tv_login_out" |
| | | android:layout_width="wrap_content" |
| | | android:layout_height="wrap_content" |
| | | android:layout_gravity="center" |
| | | android:layout_marginTop="20dp" |
| | | android:background="@drawable/shape_ff093878_10_solid" |
| | | android:gravity="center" |
| | | android:paddingHorizontal="70dp" |
| | | android:paddingVertical="5dp" |
| | | android:text="退出登录" |
| | | android:textColor="@color/white" |
| | | android:textSize="18dp" /> |
| | | </LinearLayout> |
| | | </ScrollView> |
| | | |