0

Microsoft Excel のように、Android アプリにテーブルを使用できるが、ユーザーが編集できないものがあるかどうか疑問に思っています。

私は日食のレイアウトを見てきましたが、どれもうまく機能していないようです。

私はアンドロイド2.2で開発しています

4

1 に答える 1

1

Try this coding, for display the table view.

<?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 に答える