这是我上传视频的代码:
Intent shareIntent =new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "Share");
String photoURL="sdcard/DCIM/Camera/20120518_165039.mp4";
File file = new File(photoURL);
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
shareIntent.setType("video/*");
startActivity(Intent.createChooser(shareIntent, "Share"));
当我运行它时,我选择要上传YouTube,然后它会显示错误对话框: 应用程序“我的上传”(进程com.google.android.apps.uploader)意外停止。请尝试老化。
这是日志: 谁知道如何解决它?
答案 0 :(得分:0)
转到settings> applications> manage applications> all apps> scroll down list to>my uploads (if you can't find> com.google.Android.apps.uploader) clear data
这就是你要发送的任何上传但是没有完成发送msgs的所有你需要做的事情。我在Android论坛上找到了这个答案。该应用程序在我的Droid手机设置中被称为“我的上传”。