【发布时间】:2021-03-21 04:54:02
【问题描述】:
【问题讨论】:
标签: android user-interface textview material-design
【问题讨论】:
标签: android user-interface textview material-design
这只是一个带有背景属性的view。像这样使用它:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/black"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="View line placed above the text view"
android:layout_marginTop="5dp"/>
</LinearLayout>
【讨论】: