跳至主要内容

android程序更换图标安装后不变解决办法

最近在搞android的时候发现,一开始程序使用系统默认图标,等到应用发布的时候要更换图标,结果在测试机上图标就是不变,其他手机和模拟器上都更新了图标。
测试机是小米,据说这个问题只在小米上会出现。网上查了原因说是miui会缓存图标,并且提供了两个解决方法
1.进入目录  /data/system/customized_icons 下,找到你原来的旧图标,删除即可。需要root权限
2.把当前的工程换一个包名,重新安装即可。换了包名等于是一个新的应用。旧的缓存图标就失效了
这两个方法对我都不适用,开发手机是我自己的并且是miui稳定版,不想root。工程的包名也不想修改,为了达到领导的统一效果。
于是尝试了还有第三种方法,最简单也最有效,更改下小米的主题就ok了,原来的主题是a,现在换成b,图标刷新了,这时再把主题
修改回a,问题解决。

评论

此博客中的热门博文

android hide actionbar

public class MainActivity extends Activity { ActionBar actionBar; //声明ActionBar @Override protected void onCreate( Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView( R .layout.activity_main); actionBar = getSupportActionBar(); //得 到ActionBar actionBar.hide(); //隐藏ActionBar } }

go url encoding

func  QueryUnescape func QueryUnescape (s string ) ( string , error ) QueryUnescape does the inverse transformation of QueryEscape, converting %AB into the byte 0xAB and '+' into ' ' (space). It returns an error if any % is not followed by two hexadecimal digits. func  QueryUnescape func QueryUnescape (s string ) ( string , error ) QueryUnescape does the inverse transformation of QueryEscape, converting %AB into the byte 0xAB and '+' into ' ' (space). It returns an error if any % is not followed by two hexadecimal digits.