Development Tip

Intent를 통해 ArrayList 전달

yourdevel 2020. 10. 16. 08:11
반응형

Intent를 통해 ArrayList 전달


인 텐트를 사용하여 arrayList를 다른 활동에 전달하려고합니다. 다음은 첫 번째 활동의 코드입니다.

case R.id.editButton:
        Toast.makeText(this, "edit was clicked", Toast.LENGTH_LONG).show();
        Intent intent = new Intent(this, editList.class);
        intent.putStringArrayListExtra("stock_list", stock_list);
        startActivity(intent);
        break;

여기에서 두 번째 활동에서 목록을 검색하려고합니다. 여기에 문제가 있습니까?

Intent i = new Intent(); //This should be getIntent();
    stock_list = new ArrayList<String>();

    stock_list = i.getStringArrayListExtra("stock_list");

수신 의도에서 다음을 수행해야합니다.

Intent i = getIntent();  
stock_list = i.getStringArrayListExtra("stock_list");

당신이 그것을 가지고있는 방식으로 당신은 추가없이 새로운 빈 인 텐트를 만들었습니다.

추가 항목이 하나 뿐인 경우 다음과 같이 요약 할 수 있습니다.

stock_list = getIntent().getStringArrayListExtra("stock_list");

나는 String 형태로 ArrayList전달 함으로써 이것을 수행했습니다 .

  1. 추가 compile 'com.google.code.gson:gson:2.2.4'종속 블록 build.gradle .

  2. Sync Project with Gradle Files를 클릭합니다 .

Cars.java :

public class Cars {
    public String id, name;
}

FirstActivity.java

때 당신이 원하는통과 의 ArrayList를 :

List<Cars> cars= new ArrayList<Cars>();
cars.add(getCarModel("1", "A"));
cars.add(getCarModel("2", "B"));
cars.add(getCarModel("3", "C"));
cars.add(getCarModel("4", "D"));

Gson gson = new Gson();

String jsonCars = gson.toJson(cars);

Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
intent.putExtra("list_as_string", jsonCars);
startActivity(intent);

가져 오기 CarsModel을 함으로써 기능 :

private Cars getCarModel(String id, String name){
       Cars cars = new Cars();
       cars.id = id;
       cars.name = name;
    return cars;
 }

SecondActivity.java

가져와야합니다 java.lang.reflect.Type.

에서 onCreate () 검색 할 수 ArrayList의를 :

String carListAsString = getIntent().getStringExtra("list_as_string");

Gson gson = new Gson();
Type type = new TypeToken<List<Cars>>(){}.getType();
List<Cars> carsList = gson.fromJson(carListAsString, type);
for (Cars cars : carsList){
   Log.i("Car Data", cars.id+"-"+cars.name);
}

이것이 시간을 절약 할 수 있기를 바랍니다.

끝난


다음 과 같은 특정 유형 대신 클래스 와 함께 일반 배열 목록 을 사용하는 경우

전의:

private ArrayList<Model> aListModel = new ArrayList<Model>();

여기에서 Model = Class

수신 의도 :

aListModel = (ArrayList<Model>) getIntent().getSerializableExtra(KEY);

기억해야 할 사항 :

여기서 모델 클래스는 다음과 같이 구현되어야합니다. ModelClass는 Serializable을 구현합니다.


Suppose you need to pass an arraylist of following class from current activity to next activity // class of the objects those in the arraylist // remember to implement the class from Serializable interface // Serializable means it converts the object into stream of bytes and helps to transfer that object

public class Question implements Serializable {
... 
... 
...
}

in your current activity you probably have an ArrayList as follows

ArrayList<Question> qsList = new ArrayList<>();
qsList.add(new Question(1));
qsList.add(new Question(2));
qsList.add(new Question(3));

// intialize Bundle instance
Bundle b = new Bundle();
// putting questions list into the bundle .. as key value pair.
// so you can retrieve the arrayList with this key
b.putSerializable("questions", (Serializable) qsList);
Intent i = new Intent(CurrentActivity.this, NextActivity.class);
i.putExtras(b);
startActivity(i);

in order to get the arraylist within the next activity

//get the bundle
Bundle b = getIntent().getExtras();
//getting the arraylist from the key
ArrayList<Question> q = (ArrayList<Question>) b.getSerializable("questions");

//arraylist/Pojo you can Pass using bundle  like this 
Intent intent = new Intent(MainActivity.this, SecondActivity.class);
Bundle args = new Bundle();
                        args.putSerializable("imageSliders",(Serializable)allStoriesPojo.getImageSliderPojos());
                        intent.putExtra("BUNDLE",args);
 startActivity(intent); 


Get SecondActivity like this
  Intent intent = getIntent();
        Bundle args = intent.getBundleExtra("BUNDLE");
String filter = bundle.getString("imageSliders");

//Happy coding

    public class StructMain implements Serializable {
    public  int id;
    public String name;
    public String lastName;
}

this my item . implement Serializable and create ArrayList

ArrayList<StructMain> items =new ArrayList<>();

and put in Bundle

Bundle bundle=new Bundle();
bundle.putSerializable("test",items);

and create a new Intent that put Bundle to Intent

Intent intent=new Intent(ActivityOne.this,ActivityTwo.class);
intent.putExtras(bundle);
startActivity(intent);

for receive bundle insert this code

Bundle bundle = getIntent().getExtras();
ArrayList<StructMain> item = (ArrayList<StructMain>) bundle.getSerializable("test");

참고URL : https://stackoverflow.com/questions/5374546/passing-arraylist-through-intent

반응형