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类型,怎么办呢
------解决思路----------------------
楼上的答案说的蛮好~