テーブル行を動的に作成し、新しい行に 2 つの TextView を追加しています。これで問題なく動作しますが、2 つの TextView の layout_weight がそれぞれ 1 になるように LayoutParams をフォーマットしようとしています。いくつかの LayoutParams を追加しようとしましたが、無視されているようです。行を作成するコードは次のとおりです。LayoutParams ビットをコメントアウトしました。アプリを実行しても変化はありません。これは、LayoutParams が無視されていることを示しています。私の行作成コードでこれを達成できるように、layout_weight を 2 つの TextViews に割り当てるのに助けが必要です。
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_weight="1" />
行を作成するコードは次のとおりです。
TableLayout tl = (TableLayout) findViewById(R.id.pres_table);
for (int ctr = 0; ctr < pres_res.size(); ctr++)
{
final String pst_str = pres_res.get(ctr);
final String yrs_str = yrs_res.get(ctr);
TableRow tr = new TableRow(this);
/*
TableRow.LayoutParams trPara = new TableRow.LayoutParams(
TableRow.LayoutParams.MATCH_PARENT,
TableRow.LayoutParams.WRAP_CONTENT);
int leftMargin = 10;
int topMargin = 2;
int rightMargin = 10;
int bottomMargin = 2;
trPara.setMargins(leftMargin, topMargin, rightMargin, bottomMargin);
tr.setLayoutParams(trPara);
*/
TextView tv1 = new TextView(this);
tv1.setText(pst_str);
tv1.setTextColor(Color.BLACK);
tv1.setTextSize(18);
TextView tv2 = new TextView(this);
tv2.setText(yrs_str);
tv2.setTextColor(Color.BLACK);
tv2.setTextSize(18);
tr.addView(tv1);
tr.addView(tv2);
tl.addView(tr, new TableLayout.LayoutParams(
LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
}
テーブルを作成するための XML は、次のような基本的なものです。
<TableLayout
android:id="@+id/pres_table"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF" >
</TableLayout>
ありがとう!