我试图在 android 应用程序中拍照,并试图使用 android devloper 教程:http: //developer.android.com/training/camera/photobasics.html
他们带来了以下代码:
private void dispatchTakePictureIntent(int actionCode) {
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(takePictureIntent, actionCode);
}
我不明白这个动作代码是什么以及拍照应该是什么谢谢!