您的应用程序“资产”的路径是什么?安卓中的文件夹?
我正在开发一个 Android 应用程序,希望在 .apk 中捆绑一个视频文件 (mp4),以便在启动应用程序时我可以播放简短的介绍视频。
不幸的是,我无法弄清楚应该将该视频文件放置在项目文件夹中的哪个位置,以及如何访问它(文件的路径)。
我正在使用 videoView.setVideoPath();
任何帮助将不胜感激。谢谢
I am developing an Android App and would like to have a video file (mp4) bundled inside the .apk so that when the app is launched I can play a short intro video.
Unfortunately I'm having trouble figuring out where in my project folder I should place this video file, and also how to access it (the path to the file).
I am using videoView.setVideoPath();
Any help would be greatly appreciated. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其放入 res\raw 文件夹中。然后在代码中使用这个uri:“android.resource://com.mypackagename/raw/myvideosample”
Put it in res\raw folder. Then in code use this uri: "android.resource://com.mypackagename/raw/myvideosample"
您应该将其放入 /res/raw 并通过
查找更多信息
You should put it in /res/raw and access it with
Find more info here.