我有一个包含多个字符串的 String[],我要做的是根据使用的字符串设置 ProgressBar 的进度。
例如,我已经确定了字符串的数量并相应地设置了进度条的最大进度;这是清单:
"zero one two three four five six seven eight nine...."
..
String[] cpu0freqslist = cpu0freqs.split("\\s");
countcpu0 = cpu0freqslist.length;
..
ProgressBar cpu0progbar = (ProgressBar)findViewById(R.id.progressBar1);
cpu0progbar.setMax(countcpu0);
但是现在需要根据使用的item来设置progressbar的进度,不知道怎么获取item位置。
因此,如果我想将进度条设置为第五项的位置(在本例中为 6),我该怎么做 - 我怎样才能获得第五项的位置?