如何突出tablelayout的边框... 我使用roundshape.xml作为背景的形状必须有一些方法,我可以给你的tablelayout边框...
roundshape.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners android:radius="5dip" />
<gradient
android:angle="270"
android:endColor="@color/WhiteSmoke"
android:startColor="@color/WhiteSmoke"
android:type="linear" />
</shape>
WhiteSmoke =#F5F5F5
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TableLayout
android:layout_width="400dp"
android:layout_height="400dp"
android:background="@drawable/roundshape"
>
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</TableRow>
<TableRow
android:id="@+id/tableRow4"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</TableRow>
</TableLayout>
</LinearLayout>
答案 0 :(得分:2)
我认为这可能会对你有所帮助..通过代码你会找出诀窍
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TableLayout
android:layout_width="400dp"
android:layout_height="400dp"
android:background="@drawable/roundshape" >
<TableRow
android:layout_width="fill_parent"
android:layout_height="1px"
android:background="#ff9" >
<TextView
android:layout_width="fill_parent"
android:layout_height="1px"
android:text="" />
</TableRow>
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="this is amazing" />
</TableRow>
<TableRow
android:layout_width="fill_parent"
android:layout_height="1px"
android:background="#ff9" >
<TextView
android:layout_width="fill_parent"
android:layout_height="1px"
android:text="" />
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="this is amazing" />
</TableRow>
<TableRow
android:layout_width="fill_parent"
android:layout_height="1px"
android:background="#ff9" >
<TextView
android:layout_width="fill_parent"
android:layout_height="1px"
android:text="" />
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="this is amazing" />
</TableRow>
<TableRow
android:layout_width="fill_parent"
android:layout_height="1px"
android:background="#ff9" >
<TextView
android:layout_width="fill_parent"
android:layout_height="1px"
android:text="" />
</TableRow>
<TableRow
android:id="@+id/tableRow4"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="this is amazing" />
</TableRow>
<TableRow
android:layout_width="fill_parent"
android:layout_height="1px"
android:background="#ff9" >
<TextView
android:layout_width="fill_parent"
android:layout_height="1px"
android:text="" />
</TableRow>
</TableLayout>
</LinearLayout>
答案 1 :(得分:0)
这里有一篇非常类似的帖子。
来自David Jesse
我解决这个问题的方法是在xml上放置一个xml drawable资源 每个细胞的背景场。通过这种方式,您可以定义一个 具有所需单元格边框的形状。唯一的不便 是极端细胞的边界宽度的一半 其他但如果你的桌子填满整个屏幕就没问题了。