gpt4 book ai didi

android - 为什么 TextView 与 ScrollView 相交?

转载 作者:行者123 更新时间:2023-11-29 19:58:12 26 4
gpt4 key购买 nike

为什么我的 TextView 与 Activity 右侧的 ScrollView 相交,如何解决?

这是我的 Activity 截图。

Example

这是我的 Activity 的代码 XML。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="16dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_marginTop="16dp"
android:orientation="vertical">

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/rules"
android:textSize="@dimen/text_font_tall"
android:textStyle="bold|italic" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="start"
android:text="@string/rules_text"
android:textSize="@dimen/text_font_medium" />

</LinearLayout>
</ScrollView>
</LinearLayout>

最佳答案

使用与第一个 LinearLayout 相同的方式为第二个 LinearLayout 使用边距。

android:layout_margin="16dp"

顺便说一句:只要所有边距的参数都相同(layout_marginTop、layout_marginBottom、layout_marginLeft 和 layout_marginRight),您可以只使用一个属性:layout_margin

顺便说一句:你真的需要父 LinearLayout 吗?你可以这样尝试:

<ScrollView>
<LinearLayout>
<TextView/>
<TextView/>
</LinearLayout>
</ScrollView>

关于android - 为什么 TextView 与 ScrollView 相交?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36523106/

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