我想将当前显示的字符串从TextSwitcher
(字符串放在一个字符串数组中)放到另一个字符串数组中,我不知道我应该使用哪种方法,因为它.getText
不适用于 textSwitcher。
如何在此 Activity 字符串数组中加载和添加现有但未使用的字符串?
我在网上找到了这个方法,为什么它不起作用?
Resources res = getResources();
String[] favorites = res.getStringArray(R.array.favorites);
String[] planets = res.getStringArray(R.array.planets_array);
String[] temp = new String[favorites.length+1];
System.arraycopy(favorites,0,temp,0,favorites.length);
temp[favorites.length] = planets[mCounter];
favorites = temp;