gpt4 book ai didi

java - 我想在 android 中为 6 个 edittext 框创建函数,其中包括 edittext 的所有属性,这样我就可以简单地调用函数

转载 作者:行者123 更新时间:2023-11-30 04:46:32 25 4
gpt4 key购买 nike

我有 6 个编辑文本框,我想为这 6 个编辑文本框创建一个函数,这样我就可以简单地调用该函数,而不是一直定义编辑文本框。这是编辑文本框的 d 代码....

TableLayout t1=(TableLayout)findViewById(R.id.table_layout01);
TableRow tr1=new TableRow(inventory.this);
tr1.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT));

EditText ed6=new EditText(inventory.this);
ed6.setTextColor(Color.BLACK);
ed6.setText("1");

tr1.addView(ed6);

EditText ed7=new EditText(inventory.this);
ed7.setTextColor(Color.BLACK);
ed7.setText("2");

tr1.addView(ed7);

EditText ed8=new EditText(inventory.this);
ed8.setTextColor(Color.BLACK);
ed8.setText("3");

tr1.addView(ed8);.............(3 more edittext same like these)

最佳答案

采用 for 循环并在该循环中编写添加到 tr1 代码的 edittext喜欢

 for(int i=0;i<7;i++)
{
TableRow tr1=new TableRow(this);
EditText ed7=new EditText(inventory.this);
ed7.setTextColor(Color.BLACK);
String s=new Integer(i).toString(); //convert the integer into String
ed7.setText(s);
tr1.addView(ed7);
<TableLayoutName>.addview(tr1);
}

关于java - 我想在 android 中为 6 个 edittext 框创建函数,其中包括 edittext 的所有属性,这样我就可以简单地调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4825256/

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