如何去除白色的圆形边框在谷歌设备像像素

问题描述 投票:0回答:1

任何一个人有想法如何使图标在谷歌像素没有白色边框圆形。我可以看到chrome图标没有圆形边框。如何使它任何帮助?

你可以看到在屏幕截图谷歌chrome图标看起来全占用,但其他hightlighted图标不。

Screehshot of how icons looks

android titanium appcelerator-titanium titanium-alloy google-pixel
1个回答
2
投票

我得到了答案,这里是步骤。

  1. 转到tiapp.xml
  2. 编辑android->mainfest->应用润色。

以前是:

<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/

Screenshot of file structure

保持此文件夹内的图标。

参考。https:/jira.appcelerator.orgbrowseTIMOB-24659。https:/developer.android.comguidepracticesui_guidelinesicon_design_adaptive。

© www.soinside.com 2019 - 2024. All rights reserved.