0

我想知道是否有任何东西可以让我为我的 android 应用程序使用一个表格,就像 Microsoft excel 一样,但用户不能编辑。

我已经查看了 eclipse 中的布局,但它们似乎都不能正常运行。

我在 android 2.2 上开发

4

1 回答 1

1

试试这个编码,以显示表格视图。

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="wrap_content" >
<TableRow android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/Show">
    <TextView android:layout_width="50dp" android:layout_height="20dp" android:textColor="#ff8000"
        android:id="@+id/Entry"  android:layout_weight="1" android:gravity="left"/>

    <TextView android:layout_width="50dp" android:layout_height="20dp" android:textColor="#ff8000"
        android:id="@+id/sales"  android:layout_weight="1" android:gravity="right" />
</TableRow>
   </TableLayout>
于 2012-07-12T13:19:53.737 回答