字符串3的返回值

时间:2018-12-05 02:50:36

标签: android

我想在for (int i = 0; i < list.size(); i++){ displayEntry(list.get(i)); } 中返回选择值,但我总是得到选择值始终为null,请为我的英语不好对不起。

enter image description here

String prodName[]

2 个答案:

答案 0 :(得分:0)

我猜你在错误地使用split()方法。

String demo = "1,2,3,4";
String[] splitted = demo.split(",");  //splitted will be an array containing 4 elements [1, 2, 3, 4]

现在我想您知道split()方法的作用。 :)

由于您已经在变量choice中将选定的项目文本作为String获得。为什么要在其上调用split()方法?

您可以找到有关split()方法here

的更多信息

答案 1 :(得分:0)

尝试以下方式初始化数组

String[] prodName={choice};