如何修复文本溢出TextView与填充android:ellipsize =“marquee”

前端之家收集整理的这篇文章主要介绍了如何修复文本溢出TextView与填充android:ellipsize =“marquee”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在某些 Android设备上(带有 Android L和M的LG Google Nexus 5),带有android:ellipsize =“marquee”的文本视图和填充会导致文本溢出textview.它发生在右侧但不在TextView的左侧,而填充应用于左侧和右侧.

三星Galaxy S3和S6分别不会出现在Android K和L上.

<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开源项目中Android和 already reported and assigned错误

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

<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>

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

原始的错误答案(虽然有两个TextViews)
问题可能是由于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>
原文链接:https://www.f2er.com/android/315170.html

猜你在找的Android相关文章