2

这是我上传视频的代码:

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)已意外停止。请尝试老化。

这是日志: 在此处输入图像描述 谁知道如何解决?

4

1 回答 1

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

对于任何在发送时卡住但未完成发送消息的上传,这就是您所要做的。我在 Android 论坛上找到了这个答案。该应用程序在我的 Droid 手机设置中称为:“我的上传”。

于 2012-08-12T00:02:40.953 回答