gpt4 book ai didi

android - 如何以编程方式向简单的表格布局添加边框

转载 作者:行者123 更新时间:2023-11-29 15:18:17 25 4
gpt4 key购买 nike

如何通过代码向 TableLayout 添加边框?

xml 中的表格布局

<TableLayout 
android:id="@+id/tableLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</TableLayout>

我的代码

TableLayout prices = (TableLayout)findViewById(R.id.tableLayout1);
prices.setStretchAllColumns(true);
prices.bringToFront();
for(int i = 0; i < 1; i++){
TableRow tr = new TableRow(this);
TextView c1 = new TextView(this);
c1.setText(equipHere);
c1.setTextColor(Color.BLACK);
c1.setTextSize(15);
TextView c2 = new TextView(this);
c2.setText("No of Days("+daysHere+")");
c2.setTextColor(Color.BLACK);
c2.setTextSize(15);
tr.addView(c1);
tr.addView(c2);
prices.addView(tr);
}

最佳答案

执行以下操作:

    GradientDrawable gd=new GradientDrawable();
gd.setStroke(2, Color.BLACK);
prices.setBackgroungDrawable(gd);

关于android - 如何以编程方式向简单的表格布局添加边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21932479/

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