我有约束布局,它有标题和底部按钮。
我会把滚动视图在页眉和底部的中间。
当我搜索时,我发现ScrollView应该只有一个元素,我把LinearLayout放在ScrollView中。
ScrollView的高度为0 dp,因此应在页眉和按钮之间延伸。
但是我的ScrollView不工作。
有什么问题吗?
请救救我!
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:orientation="vertical">
<RelativeLayout
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/rule_header"
android:paddingVertical="20dp"
app:layout_constraintBottom_toTopOf="@+id/registerScrollView"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/goBackBtn"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:background="@drawable/ic_arrow_circle_gray" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="회원가입"
android:textSize="18dp"
android:textStyle="bold" />
</RelativeLayout>
<ScrollView
android:id="@+id/registerScrollView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:fillViewport="true"
android:scrollbars="vertical"
app:layout_constraintBottom_toTopOf="@+id/registerBtn"
app:layout_constraintTop_toBottomOf="@id/header">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical"
android:paddingHorizontal="50dp"
android:paddingVertical="20dp">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical"
android:paddingHorizontal="20dp"
android:paddingVertical="10dp">
<ImageView
android:id="@+id/avatarImage"
android:layout_width="70dp"
android:layout_height="70dp"
android:background="@drawable/avatar_background"
android:clipToOutline="true"
android:scaleType="centerInside"
android:src="@drawable/ic_user" />
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/avatarButton"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:text="사진 선택"
android:textSize="18dp">
</androidx.appcompat.widget.AppCompatButton>
</LinearLayout>
<LinearLayout
android:id="@+id/nameLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_weight="1"
android:orientation="horizontal">
<TextView
android:id="@+id/nameLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="50dp"
android:layout_weight="1"
android:text="이름"
android:textSize="20dp"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/nameInput"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<EditText
android:id="@+id/nameInput"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:gravity="center"
android:inputType="text"
android:paddingBottom="15dp"
android:textSize="20dp"
android:theme="@style/EditTheme"
tools:text="신혜정" />
</LinearLayout>
</LinearLayout>
</ScrollView>
<Button
android:id="@+id/registerBtn"
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="@drawable/default_button"
android:text="회원가입 완료"
android:textColor="@color/white"
android:textSize="20dp"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/registerScrollView" />
</androidx.constraintlayout.widget.ConstraintLayout>
3条答案
按热度按时间f4t66c6m1#
你到底有什么问题?如果我在ScrollView中放更多的元素,它就能工作。
bksxznpy2#
似乎有约束的问题。如果你设置滚动视图高度来 Package 内容而不是0dp会发生什么。
pw9qyyiw3#
如果我在主
LinearLayout
中添加一组ImageView
,则如下所示:我得到这个(部分滚动)
您添加了哪些需要滚动的内容?您是如何添加的?
ScrollView
实际上是一个需要调整大小的FrameLayout
,以便在UI中充当“窗口(你已经做了约束),然后你把一些东西放进去。通常是另一个高度为wrap_content
的布局,然后你向布局中添加内容,它的高度会增加,如果ScrollView
比它的内容小,它就会滚动。