<?xml version="1.0" encoding="utf-8"?>
|
<layout xmlns:tools="http://schemas.android.com/tools"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<data>
|
<variable
|
name="viewModel"
|
type="com.application.zhangshi_app_android.ui.function.GrowthExperienceActivityViewModel" />
|
</data>
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="?attr/pageBackgroundColor"
|
android:orientation="vertical"
|
>
|
<com.android.app_base.widget.ExtendTitleBar
|
android:id="@+id/title_bar"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
app:layout_constraintTop_toTopOf="parent"
|
app:title="成长经历(仅供查看)"
|
app:titleGravity="left"
|
app:leftIcon="@drawable/ic_back"
|
>
|
<FrameLayout
|
android:layout_width="24dp"
|
android:layout_height="24dp"
|
android:layout_marginHorizontal="16dp"
|
android:layout_gravity="center_vertical|end"
|
android:visibility="gone"
|
>
|
<ImageView
|
android:id="@+id/iv_operate"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:background="@drawable/ic_operate"
|
/>
|
</FrameLayout>
|
</com.android.app_base.widget.ExtendTitleBar>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:orientation="vertical"
|
android:paddingHorizontal="20dp"
|
app:layout_constraintTop_toBottomOf="@id/title_bar"
|
app:layout_constraintBottom_toBottomOf="parent"
|
>
|
<androidx.core.widget.NestedScrollView
|
android:id="@+id/nestedScrollView"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
>
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:paddingBottom="20dp"
|
>
|
<TextView
|
android:id="@+id/tv_basic_information"
|
android:layout_width="wrap_content"
|
android:layout_marginTop="@dimen/dp_10"
|
android:layout_height="wrap_content"
|
android:text="基本信息"
|
android:textColor="#ff000000"
|
android:textSize="20sp"
|
android:textStyle="bold"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent" />
|
|
<LinearLayout
|
android:id="@+id/layout_1"
|
android:layout_width="140dp"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="10dp"
|
android:orientation="vertical"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toBottomOf="@id/tv_basic_information"
|
>
|
|
<TextView
|
android:id="@+id/tv_name"
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/dp_20"
|
android:text="姓名"
|
android:textColor="#88000000"
|
android:textSize="12sp" />
|
|
<TextView
|
android:id="@+id/editText_name"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:autofillHints="creditCardNumber"
|
android:textColor="#DE000000"
|
android:textColorHint="#6b000000"
|
android:textSize="16sp"
|
android:text="@{viewModel.infoLiveData.nickName}"
|
tools:text="张三" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginTop="5dp"
|
android:background="#6B000000" />
|
</LinearLayout>
|
|
|
<LinearLayout
|
android:id="@+id/layout_2"
|
android:layout_width="140dp"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:layout_marginTop="20dp"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toBottomOf="@id/layout_1">
|
|
<TextView
|
android:id="@+id/tv_usedName"
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/dp_20"
|
android:text="曾用名"
|
android:textColor="#88000000"
|
android:textSize="12sp" />
|
|
<TextView
|
android:id="@+id/editText_usedName"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:autofillHints="creditCardNumber"
|
android:textColor="#DE000000"
|
android:textSize="16sp"
|
tools:text="张四"
|
android:text="@{viewModel.infoLiveData.oldName}"
|
/>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginTop="5dp"
|
android:background="#6B000000" />
|
|
</LinearLayout>
|
|
<ImageView
|
android:layout_width="100dp"
|
android:layout_height="127dp"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toTopOf="@+id/layout_1"
|
android:layout_marginEnd="20dp"
|
app:imageUrl="@{viewModel.infoLiveData.img}"
|
/>
|
|
<LinearLayout
|
android:id="@+id/layout_3_1"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="20dp"
|
android:orientation="vertical"
|
app:layout_constraintEnd_toEndOf="@+id/layout_2"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintStart_toStartOf="@+id/layout_2"
|
app:layout_constraintTop_toBottomOf="@id/layout_2">
|
|
<TextView
|
android:id="@+id/tv_gender"
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/dp_20"
|
android:text="性别"
|
android:textColor="#88000000"
|
android:textSize="12sp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:autofillHints="creditCardNumber"
|
android:textColor="#DE000000"
|
android:textColorHint="#6b000000"
|
android:textSize="16sp"
|
tools:text="男"
|
android:text="@{viewModel.infoLiveData.sexStr}"
|
/>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginTop="5dp"
|
android:background="#6B000000" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="140dp"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toTopOf="@+id/layout_3_1"
|
>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/dp_20"
|
android:text="民族"
|
android:textColor="#88000000"
|
android:textSize="12sp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:autofillHints="creditCardNumber"
|
android:textColor="#DE000000"
|
android:textColorHint="#6b000000"
|
android:textSize="16sp"
|
tools:text="汉族"
|
android:text="@{viewModel.infoLiveData.nation}"
|
/>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginTop="5dp"
|
android:background="#6B000000" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/linearLayout"
|
android:layout_width="140dp"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="20dp"
|
android:orientation="vertical"
|
app:layout_constraintStart_toStartOf="@+id/layout_2"
|
app:layout_constraintTop_toBottomOf="@+id/layout_3_1">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/dp_20"
|
android:text="国籍"
|
android:textColor="#88000000"
|
android:textSize="12sp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:autofillHints="creditCardNumber"
|
android:textColor="#DE000000"
|
android:textColorHint="#6b000000"
|
android:textSize="16sp"
|
tools:text="中国"
|
android:text="@{viewModel.infoLiveData.nationality}"
|
android:ellipsize="end"
|
android:maxLines="1"
|
/>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginTop="5dp"
|
android:background="#6B000000" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/linearLayout3"
|
android:layout_width="140dp"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toTopOf="@+id/linearLayout">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/dp_20"
|
android:text="婚姻状况"
|
android:textColor="#88000000"
|
android:textSize="12sp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:autofillHints="creditCardNumber"
|
android:textColor="#DE000000"
|
android:textColorHint="#6b000000"
|
android:textSize="16sp"
|
tools:text="未婚"
|
android:text="@{viewModel.infoLiveData.maritalStatus}"/>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginTop="5dp"
|
android:background="#6B000000" />
|
</LinearLayout>
|
|
|
<LinearLayout
|
android:layout_width="140dp"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toTopOf="@+id/linearLayout2">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/dp_20"
|
android:text="联系方式"
|
android:textColor="#88000000"
|
android:textSize="12sp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:autofillHints="creditCardNumber"
|
android:textColor="#DE000000"
|
android:textColorHint="#6b000000"
|
android:textSize="16sp"
|
tools:text="1234567890"
|
android:text="@{viewModel.infoLiveData.phoneNumber}"/>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginTop="5dp"
|
android:background="#6B000000" />
|
</LinearLayout>
|
|
|
<LinearLayout
|
android:id="@+id/linearLayout2"
|
android:layout_width="140dp"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:layout_marginTop="20dp"
|
app:layout_constraintStart_toStartOf="@+id/layout_2"
|
app:layout_constraintTop_toBottomOf="@+id/linearLayout">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/dp_20"
|
android:text="政治面貌"
|
android:textColor="#88000000"
|
android:textSize="12sp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:autofillHints="creditCardNumber"
|
android:textColor="#DE000000"
|
android:textColorHint="#6b000000"
|
android:textSize="16sp"
|
tools:text="群众"
|
android:text="@{viewModel.infoLiveData.politicalOutlook}"/>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginTop="5dp"
|
android:background="#6B000000"
|
/>
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/layout_6"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:layout_marginTop="20dp"
|
app:layout_constraintStart_toStartOf="@+id/layout_2"
|
app:layout_constraintTop_toBottomOf="@+id/linearLayout2">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/dp_20"
|
android:text="身份证号"
|
android:textColor="#88000000"
|
android:textSize="12sp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:autofillHints="creditCardNumber"
|
android:textColor="#DE000000"
|
android:textColorHint="#6b000000"
|
android:textSize="16sp"
|
tools:text="440000199801010001"
|
android:text="@{viewModel.infoLiveData.idNum}"/>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginTop="5dp"
|
android:background="#6B000000" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/layout_7"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:layout_marginTop="20dp"
|
app:layout_constraintStart_toStartOf="@+id/layout_2"
|
app:layout_constraintTop_toBottomOf="@+id/layout_6">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/dp_20"
|
android:text="户籍地址"
|
android:textColor="#88000000"
|
android:textSize="12sp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:autofillHints="creditCardNumber"
|
android:textColor="#DE000000"
|
android:textColorHint="#6b000000"
|
android:textSize="16sp"
|
tools:text="广东省广州市番禺区小谷围街道"
|
android:text="@{viewModel.infoLiveData.locationAddress}" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginTop="5dp"
|
android:background="#6B000000" />
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/layout_experience"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:orientation="vertical"
|
app:layout_constraintTop_toBottomOf="@id/layout_7"
|
android:layout_marginTop="16dp"
|
tools:layout_height="wrap_content"
|
>
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:id="@+id/layout_experience_title"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:gravity="center_vertical"
|
>
|
<TextView
|
android:id="@+id/tv_primary_experience"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="主要学习及工作经历"
|
android:textColor="#ff000000"
|
android:textSize="20sp"
|
android:textStyle="bold"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
|
/>
|
<ImageView
|
android:id="@+id/iv_experience_fold"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_vertical"
|
android:background="@{viewModel.isExperienceExpendedLiveData ? @drawable/ic_unfold : @drawable/ic_fold}"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/rv_primary"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
tools:itemCount="3"
|
tools:listitem="@layout/item_growth_experience_primary"
|
/>
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/layout_relation"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:orientation="vertical"
|
app:layout_constraintTop_toBottomOf="@id/layout_experience"
|
android:layout_marginTop="10dp"
|
>
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:id="@+id/layout_relation_title"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:gravity="center_vertical"
|
>
|
<TextView
|
android:id="@+id/tv_relationship_condition"
|
android:layout_width="0dp"
|
android:layout_weight="1"
|
android:layout_height="wrap_content"
|
android:text="家庭成员及主要社会关系情况"
|
android:textColor="#ff000000"
|
android:textSize="20sp"
|
android:textStyle="bold"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
/>
|
<ImageView
|
android:id="@+id/iv_relation_fold"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:background="@{viewModel.isRelationExpendedLiveData ? @drawable/ic_unfold : @drawable/ic_fold}"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/rv_relationship"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="?attr/pageBackgroundColor"
|
tools:itemCount="3"
|
tools:listitem="@layout/item_growth_experience_relationship" />
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
android:id="@+id/layout_10"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
app:layout_constraintTop_toBottomOf="@id/layout_relation"
|
android:layout_marginTop="10dp"
|
>
|
|
<TextView
|
android:id="@+id/tv_migration_condition"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="@dimen/dp_5"
|
android:text="移居国(境)情况"
|
android:textColor="#ff000000"
|
android:textSize="20sp"
|
android:textStyle="bold"
|
/>
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="15dp"
|
android:text="是否拥有外籍、境外居留权、长期居留许可"
|
android:textColor="#6b000000"
|
android:textSize="12sp" />
|
|
<RadioButton
|
android:id="@+id/radioButton"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:checked="@{viewModel.infoLiveData.outStatus==1?true:false}"
|
android:clickable="false"
|
android:text="是"
|
/>
|
<View
|
android:layout_width="140dp"
|
android:layout_height="1dp"
|
android:background="#6B000000"
|
/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="20dp"
|
android:text="证件号码"
|
android:textColor="#6b000000"
|
android:textSize="12sp" />
|
<TextView
|
android:id="@+id/editText_Residence_Number"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:autofillHints="creditCardNumber"
|
android:textColor="#DE000000"
|
android:textSize="16sp"
|
tools:text="1234567890"
|
android:text="@{viewModel.infoLiveData.idNo}"
|
/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:background="#6B000000"
|
android:layout_marginTop="8dp"
|
/>
|
</LinearLayout>
|
|
<LinearLayout
|
android:id="@+id/layout_holder"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:orientation="vertical"
|
android:layout_marginTop="10dp"
|
app:layout_constraintTop_toBottomOf="@id/layout_10"
|
>
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:id="@+id/layout_holder_title"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:gravity="center_vertical"
|
>
|
<TextView
|
android:id="@+id/tv_certificate_condition"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="持有证件情况"
|
android:textColor="#ff000000"
|
android:textSize="20sp"
|
android:textStyle="bold"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
/>
|
|
<ImageView
|
android:id="@+id/iv_holder_fold"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_vertical"
|
android:background="@{viewModel.isHolderExpendedLiveData ? @drawable/ic_unfold : @drawable/ic_fold}"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/rv_certificates"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
tools:itemCount="3"
|
tools:listitem="@layout/item_growth_experience_holder_condition" />
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
android:id="@+id/layout_abroad"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:orientation="vertical"
|
app:layout_constraintTop_toBottomOf="@id/layout_holder"
|
android:layout_marginTop="10dp"
|
>
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:id="@+id/layout_abroad_title"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:gravity="center_vertical"
|
>
|
<TextView
|
android:id="@+id/tv_abroad_condition"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="出国(境)情况"
|
android:textColor="#ff000000"
|
android:textSize="20sp"
|
android:textStyle="bold"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
/>
|
|
<ImageView
|
android:id="@+id/iv_abroad_fold"
|
android:layout_width="20dp"
|
android:layout_height="20dp"
|
android:layout_gravity="center_vertical"
|
android:background="@{viewModel.isAbroadExpendedLiveData ? @drawable/ic_unfold : @drawable/ic_fold}"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/rv_abroad"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
app:layout_constraintTop_toBottomOf="@+id/layout_11"
|
tools:itemCount="3"
|
tools:listitem="@layout/item_growth_experience_abroad_condition" />
|
</LinearLayout>
|
|
<TextView
|
android:id="@+id/tv_autobiography"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="20dp"
|
android:text="自传"
|
android:textColor="#ff000000"
|
android:textSize="20sp"
|
android:textStyle="bold"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintTop_toBottomOf="@+id/layout_abroad"
|
/>
|
<com.google.android.material.tabs.TabLayout
|
android:id="@+id/tab_layout"
|
android:layout_width="match_parent"
|
android:layout_height="30dp"
|
android:layout_marginTop="16dp"
|
app:tabTextAppearance="@style/MyTabLayout"
|
app:tabTextColor="#88000000"
|
app:tabSelectedTextColor="#FF000000"
|
app:layout_constraintTop_toBottomOf="@+id/tv_autobiography"
|
app:tabMode="scrollable"
|
app:tabIndicatorHeight="0dp"
|
app:tabGravity="fill"
|
/>
|
<TextView
|
android:id="@+id/tv_fill"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/shape_fffad1e0_stroke_0_10_10_10"
|
android:paddingHorizontal="16dp"
|
android:paddingVertical="10dp"
|
android:visibility="gone"
|
tools:visibility="visible"
|
app:layout_constraintTop_toBottomOf="@id/tab_layout"
|
/>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.core.widget.NestedScrollView>
|
</LinearLayout>
|
<androidx.constraintlayout.utils.widget.ImageFilterView
|
android:id="@+id/fab_move_to_top"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:layout_marginEnd="25dp"
|
android:layout_marginBottom="44dp"
|
app:fabCustomSize="100dp"
|
android:background="@drawable/ic_move_to_top"
|
/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
</layout>
|