我正在尝试更改桌面的Flex 4.5 AIR应用程序的默认图标。
我尝试修改Main-app.xml
Adobe AIR应用程序描述符文件模板文件:
<icon>
<image16x16>src/assets/app_icons/icon_016.png</image16x16>
<image32x32>src/assets/app_icons/icon_032.png</image32x32>
<image48x48>src/assets/app_icons/icon_048.png</image48x48>
<image128x128>src/assets/app_icons/icon_128.png</image128x128>
</icon>
但是,这似乎不起作用,我在运行应用程序时仍然看到默认的AIR图标。我想知道我是否错了图标的相对路径?
注意:我也尝试了assets/app_icons/
路径,但这也不起作用。
答案 0 :(得分:4)
我终于找到了解决这个问题的方法“包”
中缺少303 app.xml图标文件尝试放置图标大小的所有版本
<!-- The icon the system uses for the application. For at least one resolution,
specify the path to a PNG file included in the AIR package. Optional. --><icon>
<image16x16>assets/icon16.png</image16x16>
<image32x32>assets/icon32.png</image32x32>
<image48x48>assets/icon48.png</image48x48>
<image72x72>assets/icon72.png</image72x72>
<image128x128>assets/icon128.png</image128x128></icon>
希望有所帮助
答案 1 :(得分:0)
你的路径错了,试试这个:
<image16x16>src/assets/app_icons/icon_016.png</image16x16>