这是我的代码,我收到以下错误消息:
请“ java.lang.IndexOutOfBoundsException:索引:1,大小:0”。
我的应用应该使用AllWords列表
我不知道为什么在我使用SharedPrefrences添加大量单词时将其大小视为0。

 protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_library);

        sp = getSharedPreferences("Words", Context.MODE_PRIVATE);
        word1 = findViewById(R.id.word1);

        AllWords = GetAllWords();

        word1.setText(AllWords.get(1).toString());
    }

    public List<String> GetAllWords (){
        List<String> AllWords = Collections.synchronizedList(new ArrayList<String>());
       for(int i=0 ; i<sp.getInt("size",0) ; i++){
            AllWords.add(sp.getString("i",""));
        }
        return AllWords;
    }

最佳答案

SharedPreferences使用String键,而不使用int。当您使用字符串常量SharedPreferences读取或写入"i"时,您并未按照自己的想法为项目建立索引。您正在存储一个值,并且可能多次重写它。

07-26 09:08