gpt4 book ai didi

android - 如何在父级为 ScrollView 的约束布局中将元素逐个放置在另一个元素下面

转载 作者:行者123 更新时间:2023-12-05 00:16:10 24 4
gpt4 key购买 nike

我有什么:

我有 4 个小部件,放置在约束布局内,其父级是 ScrollView


我想做的事情:

我正在尝试一个一个地显示小部件


发生了什么:

小部件一层一层地放置


我的布局

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:fillViewport="true">


<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">


<EditText
android:id="@+id/edtNameId"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/str_name"
android:inputType="text"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>

<EditText
android:id="@+id/edtPwdId"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/str_password"
app:layout_constraintBottom_toBottomOf="@+id/edtNameId"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>

<TextView
android:id="@+id/txtChangePwdId"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/str_change_password"
app:layout_constraintBottom_toBottomOf="@+id/edtPwdId"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>

<Button
android:id="@+id/btnSubmitId"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/str_submit"
app:layout_constraintBottom_toBottomOf="@+id/txtChangePwdId"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>


</androidx.constraintlayout.widget.ConstraintLayout>

</ScrollView>

输出:

enter image description here

最佳答案

您应该使用 layout_constraintTop_toBottomOf 而不是 app:layout_constraintBottom_toBottomOf试试这个

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:fillViewport="true">


<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">


<EditText
android:id="@+id/edtNameId"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/str_name"
android:inputType="text"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>

<EditText
android:id="@+id/edtPwdId"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/str_password"
app:layout_constraintTop_toBottomOf="@+id/edtNameId"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>

<TextView
android:id="@+id/txtChangePwdId"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/str_change_password"
app:layout_constraintTop_toBottomOf="@+id/edtPwdId"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>

<Button
android:id="@+id/btnSubmitId"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/str_submit"
app:layout_constraintTop_toBottomOf="@+id/txtChangePwdId"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>


</androidx.constraintlayout.widget.ConstraintLayout>

</ScrollView>

关于android - 如何在父级为 ScrollView 的约束布局中将元素逐个放置在另一个元素下面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61788721/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com