您的应用程序“资产”的路径是什么?安卓中的文件夹?

发布于 2024-09-13 07:29:08 字数 208 浏览 2 评论 0原文

我正在开发一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小帐篷 2024-09-20 07:29:08

将其放入 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"

苍景流年 2024-09-20 07:29:08

您应该将其放入 /res/raw 并通过

getResources().openRawResource(id)

查找更多信息

You should put it in /res/raw and access it with

getResources().openRawResource(id)

Find more info here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文