美文网首页
Android 内存相关

Android 内存相关

作者: zlzxm | 来源:发表于2017-09-28 11:34 被阅读0次

    ActivityManager activityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);

    //  系统给app 能分配的最大空间

    intmemClass = activityManager.getMemoryClass();

    //  app 占用空间

    Float totaMemory = Runtime.getRuntime().totalMemory() *1.0f/(1024*1024);

    //app 空闲空间

    Float freeMemory = Runtime.getRuntime().freeMemory() *1.0f/(1024*1024);

    //app 可以运行最大内存

    Float maxMemory = Runtime.getRuntime().maxMemory() *1.0f/(1024*1024);

    内存优化中最最重要的 是imageView 图形展示

     100k 图片 可以增加 30m 内存消耗 ,显示图片许谨慎啊

    相关文章

      网友评论

          本文标题:Android 内存相关

          本文链接:https://www.haomeiwen.com/subject/ubumextx.html