当前位置: 代码迷 >> Android >> 初学者问一个putExtra的有关问题
  详细解决方案

初学者问一个putExtra的有关问题

热度:30   发布时间:2016-04-28 03:13:40.0
菜鸟问一个putExtra的问题
public void handleMessage(Message msg) {
// TODO Auto-generated method stub
super.handleMessage(msg);
BookInfo book = (BookInfo) msg.obj;

// 进度条消失
mpd.dismiss();

Intent intent = new Intent(MainActivity.this, BookView.class);
intent.putExtra(BookInfo.class.getName(), book);//-------->报错如下:

The method putExtra(String, boolean) in the type Intent is not applicable for the arguments (String, BookInfo)

startActivity(intent);
}
};

book  是一个类,不能改成boolean类型,怎么办呢
------解决思路----------------------
楼上的答案说的蛮好~