我正在尝试从Android相机捕获视频时设置标题
我的代码是:
Intent captureVideoIntent = new Intent(
android.provider.MediaStore.ACTION_VIDEO_CAPTURE);
// set the image file name
captureVideoIntent.putExtra(MediaStore.EXTRA_MEDIA_TITLE,"My title" );
startActivityForResult(captureVideoIntent, 0);
我在检查标题时变得空白(通过右键单击窗口 - > property->详细信息)。任何人都可以帮助我吗?