• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:Android table レイアウトについて)

Android table レイアウトについて

このQ&Aのポイント
  • Androidのxmlレイアウトに、指定のテーブルレイアウトを作成
  • 開発環境はEclipseで、似たような方法を試すもエラーが発生
  • 助けを求める状況で、イメージ通りのテーブルレイアウトが実現できない

質問者が選んだベストアンサー

  • ベストアンサー
  • droidkun
  • ベストアンサー率85% (6/7)
回答No.1

とりあえず意図している状態では表示されると思う。 ※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>

nstammy507
質問者

お礼

回答ありがとうございます。 私の環境下で match_parent が使えないのです 泣 前に別な質問した時にわかったのですが、何故かエラー出ちゃって・・・・・ 参考にして頑張ってみます。 どうもありがとうございました。

その他の回答 (1)

  • droidkun
  • ベストアンサー率85% (6/7)
回答No.2

追記:SDK2.2以前は、 match_parentをfill_parentに置き換える。 で、エラーは消えます。

nstammy507
質問者

お礼

ありがとうございました 笑顔 無事解決しました おそくなってすいませんでした