Files
Xuewang365OSHonor/app/src/main/res/layout/fragment_parents.xml
tongtongstudio 2c4af66ad8 version:1.9.1
fix:
update:个人信息页面完善
2024-09-14 09:40:25 +08:00

37 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<layout 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"
tools:context=".fragment.usercenter.parents.ParentsFragment">
<data>
<variable
name="click"
type="com.uiui.zyos.fragment.usercenter.parents.ParentsFragment.BtnClick" />
</data>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/dp_16">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="@{click::openSn}"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:src="@drawable/wechat_bind_process"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</FrameLayout>
</layout>