如何将包含Constraintlayout的Scrollview添加到也是Constraintlayout的布局中

问题描述 投票:0回答:1

我有一个复杂的布局,它是用constraintlayout创建的,我需要用滚动视图垂直滚动它的某些部分,当然,这个滚动视图也必须包含constraintlayout有什么机构可以帮助您吗?

android android-studio android-layout scrollview android-constraintlayout
1个回答
0
投票
<ScrollView 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"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.constraint.ConstraintLayout
        android:id="@+id/constraintLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">


    </android.support.constraint.ConstraintLayout>
    </ScrollView>
© www.soinside.com 2019 - 2024. All rights reserved.