調用android的Camera 執行結果沒有回調onActivityResult()

來源:互聯網
上載者:User

標籤:android   blog   http   io   ar   for   sp   on   art   

============問題描述============


我調用android系統的 camera :
Uri uri = Uri.fromFile(new File(imagepath));

Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

intent.putExtra(MediaStore.EXTRA_OUTPUT, uri);

mactivity.startActivityForResult(intent,2);

開啟了系統相機,並且重寫了onActivityResult(int requestCode, int resultCode,Intent data)方法。
@Override
public void onActivityResult(int requestCode, int resultCode,Intent data){ 
super.onActivityResult(requestCode, resultCode, data);
if(requestCode == 2 && resultCode == RESULT_OK)
{
cameraview.iview.setImageURI(Uri.fromFile(new File(cameraview.imagepath)));

Bitmap bmp = (Bitmap)data.getExtras().get("data");
Log.d("Test", "bmp width" + bmp.getWidth() + ",height:" + bmp.getHeight());
}
}

我拍照後 ,點擊確認鍵,沒有任何反應。點擊取消鍵 才回調了onActivityResult方法。

請大神指教,為什麼點擊“確認”沒有回調onActivityResult方法????

============解決方案1============


http://blog.csdn.net/shen332401890/article/details/9313379
參考一下

另外,你的應用的launchmode 是啥?預設嗎?

再者 試試樓上的說法 先不加判斷條件試試看

調用android的Camera 執行結果沒有回調onActivityResult()

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.