- ベストアンサー
Android table レイアウトについて
- Androidのxmlレイアウトに、指定のテーブルレイアウトを作成
- 開発環境はEclipseで、似たような方法を試すもエラーが発生
- 助けを求める状況で、イメージ通りのテーブルレイアウトが実現できない
- みんなの回答 (2)
- 専門家の回答
質問者が選んだベストアンサー
とりあえず意図している状態では表示されると思う。 ※SDK Ver.2.2以上 <?xml version="1.0" encoding="utf-8"?> <TableLayout android:id="@+id/tableLayout1" android:layout_height="match_parent" android:layout_width="match_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:stretchColumns="0,1"> <TableRow android:id="@+id/tableRow1" android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:text="TextView" android:id="@+id/textView1" android:layout_width="match_parent" android:layout_height="wrap_content"></TextView> <TextView android:text="TextView" android:gravity="right" android:id="@+id/textView2" android:layout_width="match_parent" android:layout_height="wrap_content"></TextView> </TableRow> <TableRow android:id="@+id/tableRow2" android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:text="TextView" android:id="@+id/textView3" android:layout_width="match_parent" android:layout_height="wrap_content"></TextView> <TextView android:text="TextView" android:gravity="right" android:id="@+id/textView4" android:layout_width="match_parent" android:layout_height="wrap_content"></TextView> </TableRow> </TableLayout>
その他の回答 (1)
- droidkun
- ベストアンサー率85% (6/7)
追記:SDK2.2以前は、 match_parentをfill_parentに置き換える。 で、エラーは消えます。
お礼
ありがとうございました 笑顔 無事解決しました おそくなってすいませんでした
お礼
回答ありがとうございます。 私の環境下で match_parent が使えないのです 泣 前に別な質問した時にわかったのですが、何故かエラー出ちゃって・・・・・ 参考にして頑張ってみます。 どうもありがとうございました。