gpt4 book ai didi

android - 如何使用填充 android :ellipsize ="marquee" 修复文本溢出 TextView

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:07:40 25 4
gpt4 key购买 nike

在某些 Android 设备上(LG Google Nexus 5 和 Android L 和 M)带有 android:ellipsize="marquee"和填充的 TextView 会导致文本溢出 TextView 。不过,它出现在 TextView 的右侧而不是左侧,而填充同时应用于左侧和右侧。

screenshot

它不会分别出现在搭载 Android K 和 L 的三星 Galaxy S3 和 S6 上。

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
android:paddingTop="2dp"
android:paddingBottom="2dp"
android:paddingLeft="4dp"
android:paddingRight="4dp"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:freezesText="true"
android:alpha="0.85"
android:background="@color/by433_gray_darker"
android:textColor="@color/white"
android:textSize="11sp" />

我该怎么做才能解决或解决这个问题?

最佳答案

您的问题是 Android 和 already reported and assigned 的错误在 Android 开源项目上:

您的解决方法可能如下所示:

<FrameLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="2dp"
android:paddingBottom="2dp"
android:paddingLeft="4dp"
android:paddingRight="4dp"
android:layout_marginBottom="1dp"
android:background="@color/by433_gray_darker">
<TextView
android:id="@+id/textId"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:freezesText="false"
android:alpha="0.85"
android:text="super nice text text text text text text text text text text text text text text text text text"
android:textColor="@color/white"
android:textSize="11sp" />
</FrameLayout>

因此,我们的想法是拥有一个带有填充、边距和背景的包装器容器。 (如果您只有几个这样的 View ,那么性能开销应该不会太大)


原来的错误答案(虽然有两个TextView)问题可能是由于您的 TextView 上组合了太多属性。以下是一些建议:

  1. 首先尝试逐一删除属性检查结果
  2. 您可以尝试在容器上指定填充而不是 TextView
  3. 从您的布局来看,您似乎可以尝试这样的操作而不是 TextView 中的“match_parent”:

    <LinearLayout android:orientation="horizontal" ...>
    <TextView android:layout_width="0dp" android:layout_weight="1" ... />
    <TextView android:layout_width="0dp" android:layout_weight="1" ... />
    </LinearLayout>

关于android - 如何使用填充 android :ellipsize ="marquee" 修复文本溢出 TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33779634/

25 4 0