我想在我的应用程序中显示表格布局中的虚线边距。 有可能吗? 如果是,那么如何..
答案 0 :(得分:1)
假设您需要在tablelayout中提供10dip的保证金。因此,使用以下公式,您可以使用具有您选择的点的图像与计算出的尺寸,而不是给出10倾角的边距
pixels = dps *(密度/ 160)
我希望这应该有用
答案 1 :(得分:1)
然后试试这个
<TableRow android:layout_height="wrap_content" android:id="@+id/tableRow1" android:background="@drawable/dot"
android:layout_width="fill_parent">
<TextView android:layout_height="wrap_content"
android:layout_width="wrap_content" android:text="Your text"></TextView>
</TableRow>
我在表格行中设置了背景虚线图像
这将满足您的要求。
答案 2 :(得分:0)
这是代码
<?xml version="1.0" encoding="utf-8"?>
<TableLayout android:layout_height="wrap_content" android:stretchColumns="1"
android:id="@+id/tableLayout1" android:layout_width="wrap_content">
<TableRow android:layout_height="wrap_content" android:id="@+id/tableRow1"
android:layout_width="fill_parent">
<ImageView android:layout_width="wrap_content" android:src="@drawable/dot"
android:layout_height="fill_parent"></ImageView>
<TextView android:layout_height="wrap_content"
android:layout_width="wrap_content" android:text="Your text"></TextView>
<ImageView android:layout_width="wrap_content" android:src="@drawable/dot"
android:layout_height="fill_parent"></ImageView>
</TableRow>
</TableLayout>