如何去除 google 像素设备中的白色圆形边框
How to remove white color circular border in google devices like pixel
任何知道如何在 google 像素中制作没有白色边框圆形图标的人。我可以看到 chrome 图标没有圆形边框。如何让它有所帮助?
您可以在屏幕截图中看到 google chrome 图标看起来已满,但其他突出显示的图标却没有。
我得到的答案是步骤:
- 前往 tiapp.xml
- 编辑android->mainfest->application touple
以前是:
<application android:theme="@style/Theme.connectMobileTheme" >
更改后:
<application android:theme="@style/Theme.connectMobileTheme" android:roundIcon="@mipmap/ic_launcher_round" android:icon="@drawable/appicon" >
这将操纵 /Projects/titanium/build/android/AndroidManifest.xml
文件进行应用。
为此,您需要在 /Projects/titanium/platform/android/res/
中维护图标
保留此文件夹内的图标。
参考:
https://jira.appcelerator.org/browse/TIMOB-24659
https://developer.android.com/guide/practices/ui_guidelines/icon_design_adaptive
任何知道如何在 google 像素中制作没有白色边框圆形图标的人。我可以看到 chrome 图标没有圆形边框。如何让它有所帮助?
您可以在屏幕截图中看到 google chrome 图标看起来已满,但其他突出显示的图标却没有。
我得到的答案是步骤:
- 前往 tiapp.xml
- 编辑android->mainfest->application touple
以前是:
<application android:theme="@style/Theme.connectMobileTheme" >
更改后:
<application android:theme="@style/Theme.connectMobileTheme" android:roundIcon="@mipmap/ic_launcher_round" android:icon="@drawable/appicon" >
这将操纵 /Projects/titanium/build/android/AndroidManifest.xml
文件进行应用。
为此,您需要在 /Projects/titanium/platform/android/res/
保留此文件夹内的图标。
参考: https://jira.appcelerator.org/browse/TIMOB-24659 https://developer.android.com/guide/practices/ui_guidelines/icon_design_adaptive