我想用Android做一个计算器界面。现在,我想使用textview来显示输入公式。我希望它具有以下属性:
只显示一行内容是否已填充,当内容溢出时,过量使用“.”文本视图可以沿的水平方向滑动。
my xml file
<TextView
android:id="@+id/tvInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTo
我一直在使用空格:无包装、文本溢出:省略和溢出:隐藏的CSS属性来创建多行文本的省略截断。然而,当使用flexbox时,这是行不通的。
当使用flex时,文本溢出:省略似乎总是将flex项的高度截断为一行。
对于多行文本,可以使用flex和css省略截断的一些组合吗?
<div className="flex-container">
<div className="flex-item">
<p>long multiline text that i would like to truncate</p>