scrollview in income verification (#5341)

This commit is contained in:
nikhil kumar
2023-02-14 15:23:41 +05:30
committed by GitHub Enterprise
parent 141e10b58e
commit 6e359c4e84

View File

@@ -43,17 +43,24 @@
app:layout_constraintTop_toBottomOf="@id/search_widget"
app:visibility="@{!showVerificationTypes}" />
<include
android:id="@+id/layout_verification_types"
layout="@layout/income_verification_types_layout"
<ScrollView
android:layout_width="match_parent"
android:layout_height="@dimen/dp_0"
android:fillViewport="true"
app:layout_constraintBottom_toTopOf="@id/footer_view"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/search_widget"
app:verificationTypesData="@{response.content.incomeVerificationTypesData}"
app:visibility="@{showVerificationTypes}" />
app:visibility="@{showVerificationTypes}">
<include
android:id="@+id/layout_verification_types"
layout="@layout/income_verification_types_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:verificationTypesData="@{response.content.incomeVerificationTypesData}" />
</ScrollView>
<com.navi.hl.common.customview.HLFooterView
android:id="@+id/footer_view"