如何在示例中实现一件事 TextView在文本后面有一行
答案 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>
<强>输出强>
答案 2 :(得分:0)
尝试这个答案:
value