2
我想要做的是,當用戶選擇這個選項時,我的Android應用程序運行一個意圖。意圖調用Android設備的相機,並且相機拍攝一張照片,然後將該文件保存到名爲posense的目錄中。這個意圖有什麼問題?
path = Environment.getExternalStorageDirectory().getName() + File.separatorChar + "posense";
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
File photo = new File(path);
Intent newintent = intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(photo));
imageuri = Uri.fromFile(photo);
startActivityForResult(newintent, 1);
有關該問題的一些說明可能會有用。 –
簡單來說,圖片並沒有進入我想要的目錄posense。 – user1094753
嘗試:File photo = new File(Environment.getExternalStorageDirectory(),「posense」);並檢查你是否有權在那裏寫文件。 – HectorLector