android – 如何在TableLayout中创建三列

前端之家收集整理的这篇文章主要介绍了android – 如何在TableLayout中创建三列前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发一个使用TableLayout的屏幕.在这里,我可以轻松创建两列.但我怎样才能创建三列?

解决方法

这是一个例子:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:stretchColumns="1">
    <TableRow>
        <TextView
            android:text="first"
            android:padding="3dip" />
        <TextView
            android:text="second"
            android:gravity="center"
            android:padding="3dip" />
        <TextView
            android:text="third"
            android:gravity="right"
            android:padding="3dip" />
    </TableRow>

    <TableRow>
        <TextView
            android:text="first"
            android:padding="3dip" />
        <TextView
            android:text="second"
            android:gravity="center"
            android:padding="3dip" />
        <TextView
            android:text="third"
            android:gravity="right"
            android:padding="3dip" />
    </TableRow>
</TableLayout>
原文链接:https://www.f2er.com/android/316440.html

猜你在找的Android相关文章