使用分隔符android垂直显示表格列
我是安卓新手 我想创建一个简单的表,其中有 2 列。所以我寻找了一些例子,发现了一个不错的例子并创建了如下表:
<TableRow>
<TextView
android:layout_column="1"
android:text="Open..."
android:padding="3dip" />
<TextView
android:text="Ctrl-O"
android:gravity="right"
android:padding="3dip" />
</TableRow>
<TableRow>
<TextView
android:layout_column="1"
android:text="Save..."
android:padding="3dip" />
<TextView
android:text="Ctrl-S"
android:gravity="right"
android:padding="3dip" />
</TableRow>
现在我得到包含两行的表格,每行有两列,没有任何分隔符。我想像任何普通表格一样在两列中有一个分隔线。任何人都可以帮我吗? 提前Tnx...
I am new to android
and I want to create a simple table with 2 columns in it. so i looked for some example and found nice one and created table like this:
<TableRow>
<TextView
android:layout_column="1"
android:text="Open..."
android:padding="3dip" />
<TextView
android:text="Ctrl-O"
android:gravity="right"
android:padding="3dip" />
</TableRow>
<TableRow>
<TextView
android:layout_column="1"
android:text="Save..."
android:padding="3dip" />
<TextView
android:text="Ctrl-S"
android:gravity="right"
android:padding="3dip" />
</TableRow>
Now i get table with two rows and each row has two columns without any separator. I want to have a divider in two columns like any normal table. Can anyone please help me with it.
Tnx in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
android.com 教程中建议的另一个简单解决方案:只需添加一个以背景作为分隔线的空视图:
来源:http://developer.android.com/resources/tutorials/views/hello-tablelayout.html
Another simple solution as suggested in the android.com tutorials: Simply add an empty view with a background as divider:
Source: http://developer.android.com/resources/tutorials/views/hello-tablelayout.html
您可以做的一件事是创建一个垂直分隔线的 png 并将其放置在表格行之间。
并将图像视图的来源设置为您的图像。
one thing you could do is create a png of a vertical divider and place it between your tablerows.
and set the source of the of the image view to your image.