2017-07-28 13 views
0

私は、EditTextとListViewを使ってリストに項目を追加できるアプリケーションを作ろうとしています。複数のアクティビティがあるのでリストに追加した内容を覚えておく必要があるので、SharedPreferencesを使用しています。初めての活動は、それがSharedPreferencesファイルのいずれかに見えたが、それはありませんでしたので、それがクラッシュした開かれたので、私は SharedPreferencesのリストに項目を追加しないでください。

if (newquestion == null) { 
     return; 
    } 

を追加しましたが、今では、リストには何も追加されません。このアクティビティの

私の完全なコード:

package com.example.dogwise; 

import android.content.Intent; 
import android.support.v7.app.AppCompatActivity; 
import android.os.Bundle; 
import android.view.View; 
import java.util.ArrayList; 
import java.util.Arrays; 
import java.util.List; 
import android.widget.ArrayAdapter; 
import android.widget.ListView; 
import android.widget.AdapterView; 
import android.content.SharedPreferences; 

public class Questions extends AppCompatActivity { 
    ListView listview; 
    String[] ListElements = new String[]{ 
      "How much food should I feed my dog?", 
      "How do I teach my dog to sit?" 
    }; 

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

     listview = (ListView) findViewById(R.id.QuestionsList); 

     final List<String> ListElementsArrayList = new ArrayList<String>(Arrays.asList(ListElements)); 
     final ArrayAdapter<String> adapter = new ArrayAdapter<String> 
       (Questions.this, android.R.layout.simple_list_item_1, ListElementsArrayList); 
     listview.setAdapter(adapter); 
     adapter.notifyDataSetChanged(); 

     SharedPreferences pref = getApplicationContext().getSharedPreferences("MyPref", MODE_PRIVATE); 
     String newquestion=pref.getString("key_question", null); 

     if (newquestion == null) { 
      return; 
     } 

     ListElementsArrayList.add(newquestion); 
     adapter.notifyDataSetChanged(); 

     Bundle newQuestion = getIntent().getExtras(); 
     if (newQuestion == null) { 
      return; 
     } 
     final String QuestionName = newQuestion.getString("QuestionName"); 

     ListElementsArrayList.add(QuestionName); 
     adapter.notifyDataSetChanged(); 

     SharedPreferences.Editor editor = getSharedPreferences("MyPref", MODE_PRIVATE).edit(); 
     editor.putString("key_question", QuestionName); 

     editor.apply(); 

     listview.setOnItemClickListener(new AdapterView.OnItemClickListener() { 
      public void onItemClick(AdapterView<?> parent, View view, 
            int position, long id) { 
       if (position == 0) { 
        Intent myIntent = new Intent(view.getContext(), Question_1.class); 
        startActivityForResult(myIntent, 0); 
       } 

       if (position == 1) { 
        Intent myIntent = new Intent(view.getContext(), Question_2.class); 
        startActivityForResult(myIntent, 0); 
       } 

       if (position == 2) { 
        Intent myIntent = new Intent(view.getContext(), Question_Asked.class); 
        myIntent.putExtra("QuestionTitle", QuestionName); 
        startActivityForResult(myIntent, 0); 
       } 
      } 
     }); 
    } 

    ; 

    public void backHomeOnClick(View view) { 
     Intent b = new Intent(this, HomeScreen.class); 
     startActivity(b); 
    } 

    public void askAQuestionOnClick(View view) { 
     Intent i = new Intent(this, AskAQuestion.class); 
     startActivity(i); 
    } 

    ; 
} 
+0

[リンク](https://stackoverflow.com/q/7057845/1512199)を参照してください。 – santalu

答えて

0

あなたは、キー=「QuestionTitle」を使用して目的にデータを公開しますが、キー=「QuestionName」を使用していることを取得しようとしています。

+0

これらは異なる意図であり、私はSharedPreferencesについて尋ねています。 – Sylvie

関連する問題