サービスにバンドルを送信しようとしています。これが私がサービスを呼び出す方法です。
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
サーバーにアップロードする を送信したい。ビットマップをサービスに送信するにはどうすればよいですか? この問題の原因は何ですか?