gpt4 book ai didi

android - 防止 TextView 包装在父级中

转载 作者:IT老高 更新时间:2023-10-28 21:36:49 26 4
gpt4 key购买 nike

如何防止 TextView 或任何视觉对象缠绕到屏幕上,而是将它们从侧面切掉?是否有一些 XML 属性或代码来执行此操作,或者是否不可能有任何内容从屏幕溢出?

例如,你有这个:

text being wrapped

但你真的想要这个:

text being cropped

有什么想法吗?

最佳答案

检查 android:maxLines="1" 如果你想添加结尾 ... 还添加 android:ellipsize="end"

<TextView
android:id="@+id/name"
android:text="i want this to crop not wrap"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:maxLines="1"
android:ellipsize="end" />

android:singleLine="true"deprecated in API Level 3 .

关于android - 防止 TextView 包装在父级中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2507798/

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