我的申请是 网络应用 可以添加到主屏幕上(例如,通过使用谷歌浏览器)。
然而,我想使用 自适应图标 Android Oreo推出的。目前,我的图标被Google Pixel Launcher强制成一个圆圈:
问: 有没有办法在网络应用中使用自适应图标,或者至少是圆形图标?
指数html
<meta name="mobile-web-app-capable" content="yes" />
显示json
{ "short_name": "My app", "name": "My app", "icons": [ { "src": "images/favicon-192px.png", "type": "image/png", "sizes": "192x192" } ], "display": "standalone", "orientation": "portrait", "background_color": "#ffffff", "theme_color": "#000000" }
也许这只能在Googke Pixel Launcher上实现?你试过使用其他发射器吗?
图标必须透明才能成为自适应图标。
你能发送你正在使用的当前图标吗?
当做 来自jokela的开发者