大家好 我有个Spinner的问题想要问一下
Spinner 要加选项的话要用this.xxx.add("");去加选项
我现在有个问题
假如 get1=a , get2=b ,get3=c , get4=d , get5=e
就会是以下的写法
this.data = new ArrayList<CharSequence>();
this.data.add(get1());
this.data.add(get2());
this.data.add(get3());
this.data.add(get4());
this.data.add(get5());
this.spdata = (Spinner) super.findViewById(R.id.data);
this.adapterdata = ArrayAdapter <CharSequence>(this,
android.R.layout.simple_spinner_item, this.data);
this.adapterdata.setDropDownViewResource(
android.R.layout.simple_spnner_dropdown_item);
我想问的是有没有办法能够简化this.data.add这边
假如有get100 , 不就要add100行
谢谢!!