인 텐트를 사용하여 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 를 전달 함으로써 이것을 수행했습니다 .
-
추가
compile 'com.google.code.gson:gson:2.2.4'
에 종속 블록 build.gradle . -
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);
기억해야 할 사항 :
여기서 Model-class는 다음과 같이 구현되어야합니다.
ModelClass는 Serializable을 구현합니다.
답변
다음 클래스의 arraylist를 현재 활동에서 다음 활동으로 전달해야한다고 가정합니다. // 객체의 클래스 arraylist에있는 객체 // Serializable 인터페이스에서 클래스를 구현해야합니다. // Serializable은 객체를 바이트 스트림으로 변환하고 도움을줍니다. 그 물건을 옮기기 위해
public class Question implements Serializable {
...
...
...
}
현재 활동에서 아마도 다음과 같이 ArrayList가 있습니다.
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);
다음 활동 내에서 arraylist를 얻기 위해
//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;
}
이 내 항목. Serializable 구현 및 ArrayList 생성
ArrayList<StructMain> items =new ArrayList<>();
번들에 넣어
Bundle bundle=new Bundle();
bundle.putSerializable("test",items);
Bundle을 Intent에 넣는 새 Intent를 만듭니다.
Intent intent=new Intent(ActivityOne.this,ActivityTwo.class);
intent.putExtras(bundle);
startActivity(intent);
수신 번들의 경우이 코드를 삽입하십시오.
Bundle bundle = getIntent().getExtras();
ArrayList<StructMain> item = (ArrayList<StructMain>) bundle.getSerializable("test");