这是我的java代码:
@Override
protected void onPostExecute(String products) {
this.inv_title.setText(products);
}
String products 是来自 PHP / server 的数组。因此,当我setText
时,整个数组显示在EditText
字段上。
请告诉我如何在setText
中使用corressponding数组值执行此操作。每当我将 String产品更改为数组产品时,我的java都会遇到错误。
P.S。我是新手,所以我的错误可能很简单。
由于
答案 0 :(得分:0)
好吧,将onPostExecute
参数编辑为ArrayList。
protected void onPostExecute(ArrayList products) {
this.inv_title.setText(products.get(0));
\\change the index of the arraylist for your needs
}