android 1080P Launcher操作一段時間後佔用300M以上RAM

來源:互聯網
上載者:User

標籤:android   ar   os   sp   java   on   art   bs   cti   

 1)在Launcher的onStop方法中去調用AppsCustomizeTabHost的onTrimMemory()方法,並調用System.gc()方法。
 2)在AppsCustomizeTabHost的onTrimMemory()方法增加調用AppsCustomizePagedView.clearAllAppPages();
 3)在AppsCustomizePagedView.java中增加clearAllAppPages()方法,此方法中將app頁面移除並設定為dirty。
在Launcher的onStop方法中調用:
          ActivityManager activityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
        if (!getPackageName().equals(activityManager.getRunningTasks(1).get(0).topActivity.getPackageName())) {
             final WindowManagerGlobal windowManager = WindowManagerGlobal.getInstance();
             windowManager.startTrimMemory(ComponentCallbacks2.TRIM_MEMORY_COMPLETE);
             windowManager.endTrimMemory();
             mAppsCustomizeTabHost.onTrimMemory();
             mWidgetsCustomizeView.onTrimMemory();
         }
 level參數建議為ComponentCallback2.TRIM_MEMORY_UI_HIDDEN,
 如果不起作用,請修改為ComponentCallback2.java的其它值測試,
 如ComponentCallback2.TRIM_MEMORY_COMPLETE,然後從中挑選一個合適的值。

android 1080P Launcher操作一段時間後佔用300M以上RAM

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.