可查表[android]

时间:2012-07-12 13:15:18

标签: android

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

我看过eclipse中的布局,但似乎没有一个能够正常运行。

我在Android 2.2上开发

1 个答案:

答案 0 :(得分: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>