Сохранить новую форму пользовательских ArrayList, SharedPreferences - PullRequest
0 голосов
/ 25 ноября 2018

нуби тут.У меня есть custum ArrayAdapter с вопросами и ответами.Когда один элемент списка longClicked, он удаляется.Теперь я хочу сохранить новое состояние ArrayList с удаленным элементом, поэтому, если вы перейдете на другую вкладку в приложении и вернетесь, у вас будут только оставшиеся вопросы.Я посмотрел в Интернете и нашел что-то похожее на то, что мне нужно, но я не понимаю, почему это не сработает.

public class OnePointQuestion extends AppCompatActivity {
ArrayList<Question> TheQuestion;
String key = "ABCD";

@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.list);

    if(TheQuestion == null){
        createList();
    }else{
        getArrayList(key);
    }

    final MyAdapter adapter = new MyAdapter(this, TheQuestion);
    ListView listView = findViewById(R.id.list);
    listView.setAdapter(adapter);

    //When the list item is clicked
    listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
            //Identify the current question
            Question currentQuestion = TheQuestion.get(position);

            //Send the answer to a second page to be shown
            Intent i = new Intent(OnePointQuestion.this, TheAnswer.class);
            i.putExtra("TheAnswer", currentQuestion.getAnswer());
            startActivity(i);
        }
    });

    //When the list item is long clicked
    listView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
        @Override
        public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
            //Identify the current question
            Question currentQuestion = TheQuestion.get(position);
            //Remove this element of the list
            TheQuestion.remove(currentQuestion);
            adapter.notifyDataSetChanged();
            Toast.makeText(OnePointQuestion.this, "Urmatoarea intrebare", Toast.LENGTH_SHORT).show();
            return true;
        }
    });
}

//Save the ArrayList
public void saveArrayList(ArrayList<Question> list, String key){
    SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(OnePointQuestion.this);
    SharedPreferences.Editor editor = prefs.edit();
    Gson gson = new Gson();
    String json = gson.toJson(list);
    editor.putString(key, json);
    editor.apply();     // This line is IMPORTANT !!!
    Toast.makeText(OnePointQuestion.this, "Saved", Toast.LENGTH_SHORT).show();
}

//Load the ArrayList
public ArrayList<Question> getArrayList(String key){
    SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(OnePointQuestion.this);
    Gson gson = new Gson();
    String json = prefs.getString(key, null);
    Type type = new TypeToken<ArrayList<Question>>() {}.getType();
    Toast.makeText(OnePointQuestion.this, "Loaded", Toast.LENGTH_SHORT).show();
    return gson.fromJson(json, type);
}

//Load the ArrayList when the app gets to the OnStart
@Override
protected void onStart() {
    super.onStart();
    getArrayList(key);
}


@Override
protected void onPause() {
    super.onPause();
    saveArrayList(TheQuestion, key);
}


public void createList(){
    //Create the list of questions
    TheQuestion = new ArrayList<>();
    TheQuestion.add(new Question("Cum te cheama?", "Irelevant"));
    TheQuestion.add(new Question("Cati ani ai?", "Prea multi"));
    TheQuestion.add(new Question("De ce ai dat la Poli", "Asta ma intreb si eu"));

}

}

«Сохранить» и «загрузить»методы, которые я пытаюсь использовать, близки к концу.Если вы можете сказать мне, что я делаю неправильно, я был бы признателен, спасибо:)

1 Ответ

0 голосов
/ 25 ноября 2018

Переместить getArrayList(key); в метод onResume ().

@Override
protected void onResume() {
    super.onResume();
    getArrayList(key);
}

см. Жизненный цикл:

enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...