我想在tableRow(两个textview之间)中添加一个垂直线视图,mylayout就是这样。 我不想要那个表格布局的完全边框。
<TableRow android:background="@color/alto">
<TextView
android:layout_gravity="center_vertical"
android:layout_marginBottom="15dp"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:layout_marginTop="15dp"
android:layout_weight="1"
android:padding="3dip"
android:text="@string/minimum_fare"
android:textAppearance="@android:style/TextAppearance.Small"
android:textColor="@android:color/black" />
<TextView
android:id="@+id/minimum_fare_textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginEnd="10dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="10dp"
android:layout_marginStart="5dp"
android:layout_weight="1"
android:textAppearance="@android:style/TextAppearance.Small"
android:textColor="@android:color/black" />
</TableRow>
答案 0 :(得分:1)
对于一行,您可以使用一行的图像,也可以使用背景设置为特定颜色和特定宽度的空视图;像这样的东西:
<TableRow android:background="@color/alto">
<TextView
------------
------------/>
//This will create a 1dp thick line with black background.
<View
android:layout_width="1dp" //
android:layout_height="match_parent"
android:layout_gravity="center_vertical"
android:background="#555" />
<TextView
------------
------------/>
</TableRow>