1

我想要像这样的输出:

 |<textview>...<Textview>|

例子:

 |Abcdeded, asdasds...(2)|
 |Abcedede, asdaassaa, as
  satlkjkj,asdsadf(3)    |
 |Abdedefr, asdawewer, we
  weqweeqwe.qwewewe...(3)|

我的 textview 最多可以有两行。我尝试过使用相对布局、线性布局,但没有解决我的问题。

4

2 回答 2

0

相信你想要这样的东西:

<LinearLayout ... android:orientation="vertical">
   <LinearLayout ... android:orientation="horizontal">
      <TextView ... android:ellipsize="end">
      </TextView>

      <TextView ....>
      </TextView>
   </LinearLayout>
   <LinearLayout ... android:orientation="horizontal">
      <TextView ... android:ellipsize="end">
      </TextView>

      <TextView ....>
      </TextView>
   </LinearLayout>
   .....
</LinearLayout>
于 2013-07-29T12:42:26.533 回答
0

只需在第一个 TextView 属性中使用 xml 属性:- android:ellipsize="end" 并在 firstone 之后使用第二个 TextView jsut

于 2013-07-29T12:46:58.137 回答