Phonegap 中 Android 的应用程序图标

发布于 2024-12-17 09:13:40 字数 247 浏览 0 评论 0原文

我有一个 HTML5/Javascript 应用程序,并且我使用 PhoneGap 的构建服务为我的 Android 生成 APK 文件。

我在我的 Android 上成功安装了 APK 文件,一切都很好,只是手机上的应用程序图标是默认的 Android 图标。在 PhoneGap Build 中,我将 PNG 文件上传到“详细信息”部分下的项目,我认为该图标应该用作您的应用程序图标?我尝试过几种不同的尺寸。

如果我还需要做其他事情,请告诉我。

I have an HTML5/Javascript app, and I have used PhoneGap's build service to generate the APK file for my Android.

I successfully installed the APK file on my Android and everything is fine, except that the app icon on the phone is the default Android icon. In PhoneGap Build I uploaded my PNG file to the project under the 'Details' section, and I thought that icon was supposed to be used as your app icon? I've tried several different sizes.

Let me know if there is something else I need to be doing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

作业与我同在 2024-12-24 09:13:40

在电话间隙中应包含以下内容

www_android\res\values\strings.xml - 包含应用程序的名称
www_android\res\drawable-hdpi - 包含一个 57x57 像素图标
www_android\res\drawable-hdpi - 包含一个 57x57 像素图标
www_android\res\drawable-hdpi - 包含一个 57x57 像素图标

(第 12 步)

或者

<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id="com.nitobi.johngarrett" version="1.0">
<name>John Garrett Drinking Game</name> 
<description>
If you're watching a Canucks game, you need play this.
</description> 
<author href="http://www.nitobi.com" email="[email protected]">
Tim Kim, Ryan Betts, Fil Maj
</author> 
<icon src="img/beer_72.png" width="72" height="72" />
<icon src="img/beer_48.png" width="48" height="48" />
<icon src="img/beer_36.png" width="36" height="36" />
</widget>

来源

In the Phone Gap the following should contain

www_android\res\values\strings.xml - contains the name of the app
www_android\res\drawable-hdpi - contains a 57x57 pixel icon
www_android\res\drawable-hdpi - contains a 57x57 pixel icon
www_android\res\drawable-hdpi - contains a 57x57 pixel icon

Source (Step 12)

Alternatively

<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id="com.nitobi.johngarrett" version="1.0">
<name>John Garrett Drinking Game</name> 
<description>
If you're watching a Canucks game, you need play this.
</description> 
<author href="http://www.nitobi.com" email="[email protected]">
Tim Kim, Ryan Betts, Fil Maj
</author> 
<icon src="img/beer_72.png" width="72" height="72" />
<icon src="img/beer_48.png" width="48" height="48" />
<icon src="img/beer_36.png" width="36" height="36" />
</widget>

Source

绝對不後悔。 2024-12-24 09:13:40

上面的答案都不起作用,但我想出了办法。创建一个 png 图标并将其命名为“icon.png”,然后将图像放置在“Project_Folder/res/drawable-hdpi/”下,其中 Project_Folder 是您的 PhoneGap 应用程序文件夹。

希望有帮助。

None of the above answers worked but I figured it out how. Create a png icon and name it "icon.png" and simply place the image under "Project_Folder/res/drawable-hdpi/", where Project_Folder is your PhoneGap application folder.

Hope that helps.

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