当TextView
文本长于TextView
. 我不知道为什么——但我不明白。
我已经围绕着类似的 StackOverflow 问题展开了思考,但我最终没有解决方案。也许有人有一些有用的提示。
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="vertical">
<TextView
android:textStyle="bold"
android:text="Full Name"
android:layout_height="wrap_content"
android:textSize="16sp"
android:layout_width="wrap_content"
android:id="@+id/lName"
android:layout_gravity="center_vertical"
android:maxLines="1"
android:ellipsize="end"/>
</LinearLayout>
LinearLayout
上面嵌套在 2 个 other中LinearLayouts
。也许知道这一点很重要。我也已经尝试过属性“ singleLine
”,但有人说它已被弃用,无论如何它都不起作用。