码迷,mamicode.com
首页 > 移动开发 > 详细

Android——使用 Intent传递类

时间:2017-05-06 11:51:18      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:his   extras   pos   serial   des   string   item   parent   roi   

  定义要传递的类事,必须加上

public class Movie implements Serializable
{

}

传入类:

public void onItemClick(AdapterView<?> parent,
                                    View view, int position, long id)
      {
          Movie movie= movieList.get(position);
          Intent intent = new Intent(MovieActivity.this, EditMovie.class);
          Bundle bundle = new Bundle();
          bundle.putSerializable("movie", movie);
          intent.putExtras(bundle);
          startActivity(intent);
      }

接受类:

Movie movie = (Movie) getIntent().getSerializableExtra("movie");
String name = movie.getName();
String desc = movie.getDesc();
editText1.setText(name);
editText2.setText(desc);

 

Android——使用 Intent传递类

标签:his   extras   pos   serial   des   string   item   parent   roi   

原文地址:http://www.cnblogs.com/farewell-farewell/p/6815939.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!