我想将此“列表”发送到下一堂课(HomeActivity)。但我试图通过发送额外内容来做到这一点,但有人不能帮我解决这个问题
代码
protected void onPostExecute(final List<HashMap<String,String>> list) {
// Get json response status
status = "OK";
// updating UI from Background Thread
runOnUiThread(new Runnable() {
public void run() {
if(status.equals("OK")){
int list_size = list.size();
i = new Intent(getApplicationContext(),
HomeActivity.class);
startActivity(new);
}
}
});
}