gpt4 book ai didi

android - TextView 中的部分文字超出了屏幕!

转载 作者:行者123 更新时间:2023-11-29 14:07:36 30 4
gpt4 key购买 nike

嘿,我有一个问题,TextView 中的部分文本超出了屏幕,请看图片: enter image description here

我用红色方 block 标记了问题..XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="right"
android:background="@drawable/list"
android:padding="15px">

<ScrollView android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="right">

<TextView
android:id="@+id/TfseerTextView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textSize="17px"
android:textColor="#000"
></TextView>
</LinearLayout>
</ScrollView>

</LinearLayout>

可以修复吗?有什么解决办法吗?谢谢。

最佳答案

您的文本大小应使用 17sp 而不是 17px。 sp 代表缩放像素,它将使您的应用程序在具有不同屏幕尺寸和密度的各种设备上看起来更好/更一致。

至于你遇到的问题。如果您将 TextViews layout_width 属性设置为某个值,例如android:layout_width="200dip" 在我看来你的 TextView 认为它有更多的空间可以使用,而不是它实际使用的空间(可能与背景的灰色框类型有关,但是这纯属猜测)如果您将它设置为某个特定值,它就会开始在下一行正确地换行文本。然后你只需要尝试几种不同的宽度,看看你可以把它做成多大,才能让一切看起来都像它应该的那样。

关于android - TextView 中的部分文字超出了屏幕!,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5862522/

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