使用分隔符android垂直显示表格列

发布于 2024-11-03 13:36:09 字数 725 浏览 1 评论 0原文

我是安卓新手 我想创建一个简单的表,其中有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

黎歌 2024-11-10 13:36:09

android.com 教程中建议的另一个简单解决方案:只需添加一个以背景作为分隔线的空视图:

<View
    android:layout_height="2dip"
    android:background="#FF909090" />

来源: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:

<View
    android:layout_height="2dip"
    android:background="#FF909090" />

Source: http://developer.android.com/resources/tutorials/views/hello-tablelayout.html

吃素的狼 2024-11-10 13:36:09

您可以做的一件事是创建一个垂直分隔线的 png 并将其放置在表格行之间。

<TableRow>
    <TextView
        android:layout_column="1"
        android:text="Save..."
        android:padding="3dip" />
<ImageView android:layout_width="3dp" android:layout_height="fill_parent" android:id="@+id/imageView1" android:src="@drawable/icon"/>

    <TextView
        android:text="Ctrl-S"
        android:gravity="right"
        android:padding="3dip" />
</TableRow>

并将图像视图的来源设置为您的图像。

one thing you could do is create a png of a vertical divider and place it between your tablerows.

<TableRow>
    <TextView
        android:layout_column="1"
        android:text="Save..."
        android:padding="3dip" />
<ImageView android:layout_width="3dp" android:layout_height="fill_parent" android:id="@+id/imageView1" android:src="@drawable/icon"/>

    <TextView
        android:text="Ctrl-S"
        android:gravity="right"
        android:padding="3dip" />
</TableRow>

and set the source of the of the image view to your image.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文