gpt4 book ai didi

android - 在 Android layout_weight for Table Rows in dynamic Table

转载 作者:行者123 更新时间:2023-11-29 21:32:19 24 4
gpt4 key购买 nike

我正在动态创建表行并将两个 TextView 添加到新行中。这样做效果很好,但现在我正在尝试格式化 LayoutParams,以便两个 TextView 的 layout_weight 各为 1。我尝试添加一些 LayoutParams,但看起来它们被忽略了。这是我创建行的代码,我已经注释掉了 LayoutParams 位,当我运行应用程序时没有任何变化,这告诉我 LayoutParams 被忽略了。 我需要一些帮助来将 layout_weight 分配给两个 TextView,以便在我的行创建代码中实现这一点:

        <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>

谢谢!

最佳答案

// try this way
TextView tv1 = new TextView(this);
tv1.setLayoutParams(new TableRow.LayoutParams(0, ViewGroup.LayoutParams.WRAP_CONTENT, 1.0f));
tv1.setText(pst_str);
tv1.setTextColor(Color.BLACK);
tv1.setTextSize(18);

TextView tv2 = new TextView(this);
tv2.setLayoutParams(new TableRow.LayoutParams(0, ViewGroup.LayoutParams.WRAP_CONTENT, 1.0f));
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, ActionBar.LayoutParams.WRAP_CONTENT));

关于android - 在 Android layout_weight for Table Rows in dynamic Table,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19138147/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com