2012-08-13 35 views
1

我正面臨着這個奇怪的問題,無法將任何視頻分享到YouTube上,這些視頻出現在/mnt/sdcard/Android/data/com.sec.example。這是本地存儲在我的應用程序中。當我將視頻複製到此文件夾以外(/mnt/sdcard/Android/...)時,我可以通過YouTube進行分享。無法分享視頻到Youtube,它存在於SD卡內的/ mnt/sdcard/Android /數據

此問題僅出現在Youtube。通過其他應用程序即Gmail,DropBox,Facebook,藍牙等進行共享,在所有情況下均可正常工作。

可能是什麼問題?

回答

0

這是代碼從Share files

Intent intent=new Intent(android.content.Intent.ACTION_SEND); 
intent.setType("text/plain"); 
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET); 

// Add data to the intent, the receiving app will decide what to do with it. 
intent.putExtra(Intent.EXTRA_SUBJECT, 「Some Subject Line」); 
intent.putExtra(Intent.EXTRA_TEXT, 「Body of the message, woot!」); 

startActivity(Intent.createChooser(intent, 「How do you want to share?」)); 
的知情同意