gpt4 book ai didi

android - 如何将 ScrollView 设置为 RelativeLayout 的父级?

转载 作者:行者123 更新时间:2023-11-29 14:52:43 27 4
gpt4 key购买 nike

我是 Android 应用程序开发的新手,现在我正在设计一个应用程序,因为我有一个 Activity ,它有两个并行的编辑文本字段,如图所示

enter image description here

(包含 15 组编辑文本字段)。我使用相对布局。我想添加一个垂直 ScrollView ,因为一些文本字段从屏幕上消失了。我研究了一些教程,它们都使用线性布局来添加 ScrollView 。

这是我的 layout.xml 文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<EditText
android:id="@+id/editText5"
android:layout_width="85dp"
android:layout_height="wrap_content"
android:layout_marginLeft="100dp"
android:layout_marginTop="5dp" />

<EditText
android:id="@+id/editText1"
android:layout_width="85dp"
android:layout_height="wrap_content"
android:layout_marginLeft="200dp"
android:layout_marginTop="5dp" />

<EditText
android:id="@+id/EditText01"
android:layout_width="85dp"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/editText5"
android:layout_below="@+id/editText5"
android:layout_marginTop="17dp" />

<EditText
android:id="@+id/EditText02"
android:layout_width="85dp"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/EditText01"
android:layout_alignBottom="@+id/EditText01"
android:layout_alignLeft="@+id/editText1" />

</RelativeLayout>

这里如何在不更改两个并行编辑文本字段的情况下添加 ScrollView 。请指导我。谢谢!

最佳答案

添加一个 ScrollView 作为屏幕的根。 ScrollView 应该有一个包含所有子项的子布局..

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<!-- All your views -->

</RelativeLayout>
</ScrollView>

关于android - 如何将 ScrollView 设置为 RelativeLayout 的父级?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13438610/

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