gpt4 book ai didi

android - 不显示动态行

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

我有一个 Store.java 类,我只在其中存储 2 个字符串和一个整数。然后我创建一个相同的 ArrayList 对象。我这样做是为了将来自 2 个微调器的值和一个编辑文本动态地填充到 ArrayList 中。我想以表格格式显示这些值。此外,我还创建了 Application 的子类,以便可以在其他 Activity 中轻松更新和检索 ArrayList。问题是当我点击“账单”按钮时,动态行没有添加到表格布局中。

相关代码如下:

(MyApp.java)

public class MyApp extends Application {

ArrayList<store> B = null;

public ArrayList<store> getState(){
return B;
}

public void setState(ArrayList<store> B){
this.B = B;
}
}

(比尔.java)

public class Bill extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

this.setContentView(R.layout.calc);
ArrayList<store> B = new ArrayList<store>();

store temp1=null;

MyApp appState = ((MyApp)getApplicationContext());
appState.setState(B);
B = appState.getState();
TableLayout tl = (TableLayout)findViewById(R.id.myTable);

for(int i=0;i<B.size();i++)
{
temp1=new store();
TableRow tr = new TableRow(this);
tr.setId(100+i);
temp1=B.get(i);
tr.setLayoutParams(new LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));

TextView b = new TextView(this);
b.setId(200+i);
b.setText(temp1.getPizzaName());

TextView b1 = new TextView(this);
b1.setText(temp1.getPizzaSize());
b1.setId(300+i);

TextView b2 = new TextView(this);
b2.setText(String.valueOf(temp1.getQuantity()));
b2.setId(400+i);

b.setLayoutParams(new LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
tr.addView(b);

b1.setLayoutParams(new LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
tr.addView(b1);


b2.setLayoutParams(new LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
tr.addView(b2);

tl.addView(tr,new TableLayout.LayoutParams(
LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT));
}
}
}

最佳答案

查看您的代码:

    ArrayList<store> B = new ArrayList<store>();

store temp1=null;

MyApp appState = ((MyApp)getApplicationContext());
appState.setState(B);
B = appState.getState();

您创建一个列表,然后将其设置为您的状态,然后再次检索它。您想如何获得一些数据?

PS:请遵循代码约定,你的代码很难阅读。

您的变量“temp”已初始化一次。在将其添加到列表之前,您应该每次都创建一个新实例。

关于android - 不显示动态行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5541486/

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