android TextView带文字后的行

时间:2016-05-07 09:39:41

标签: android textview

如何在示例中实现一件事 TextView在文本后面有一行

Example

3 个答案:

答案 0 :(得分:0)

用于添加行检查this

并将此视图与文本视图右侧对齐。 完成

答案 1 :(得分:0)

尝试这种方式对我有用

 <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

   <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginTop="3dp"
      android:text="Heelloos"
      android:layout_marginLeft="10dp"/>

   <View
      android:layout_width="150dp"
      android:layout_height="1dp"
      android:layout_gravity="bottom"
      android:background="#ff00ff"/>

 </LinearLayout>

<强>输出

enter image description here

答案 2 :(得分:0)

尝试这个答案:

value