我正在尝试将捆绑包发送到服务。这就是我调用服务的方式。
1) Bundle bundle = new Bundle();
2) bundle.putParcelable("bitmap", bmp); // <--- problem
3) bundle.putString("type", "SingleImage");
4) Intent intent = new Intent(getApplicationContext(),SyncService.class);
5) intent.putExtra("imageUploadBundle", bundle);
6) startService(intent);
当我评论line 2
服务被调用。但是,如果我不评论该行,则不会调用该服务。我想发送一个bitmap to the service
我将上传到服务器的文件。如何将位图发送到服务?是什么导致了这个问题?