中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android開發之Activity管理工具類完整示例

發布時間:2020-10-04 19:04:50 來源:腳本之家 閱讀:173 作者:沉水之木 欄目:移動開發

本文實例講述了Android開發之Activity管理工具類。分享給大家供大家參考,具體如下:

這個工具類是對Activity的一些管理,非常適用

package com.maobang.imsdk.util;
import java.util.Stack;
import android.app.Activity;
import android.app.ActivityManager;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.view.View;
import android.view.ViewGroup;
import android.webkit.WebView;
import android.widget.ImageView;
import android.widget.ListView;
/**
 * Activity管理類
 * Created by Administrator on 2016/11/24.
 */
public class ActivityPageManager {
  private static Stack<Activity> activityStack;
  private static ActivityPageManager instance;
  /**
   * constructor
   */
  private ActivityPageManager() {
  }
  /**
   * get the AppManager instance, the AppManager is singleton.
   */
  public static ActivityPageManager getInstance() {
    if (instance == null) {
      instance = new ActivityPageManager();
    }
    return instance;
  }
  /**
   * add Activity to Stack
   */
  public void addActivity(Activity activity) {
    if (activityStack == null) {
      activityStack = new Stack<Activity>();
    }
    activityStack.add(activity);
  }
  /**
   * remove Activity from Stack
   */
  public void removeActivity(Activity activity) {
    if (activityStack == null) {
      activityStack = new Stack<Activity>();
    }
    activityStack.remove(activity);
  }
  /**
   * get current activity from Stack
   */
  public Activity currentActivity() {
    Activity activity = activityStack.lastElement();
    return activity;
  }
  /**
   * finish current activity from Stack
   */
  public void finishActivity() {
    Activity activity = activityStack.lastElement();
    finishActivity(activity);
  }
  /**
   * finish the Activity
   */
  public void finishActivity(Activity activity) {
    if (activity != null) {
      activityStack.remove(activity);
      activity.finish();
      activity = null;
    }
  }
  /**
   * finish the Activity
   */
  public void finishActivity(Class<?> cls) {
    for (Activity activity : activityStack) {
      if (activity.getClass().equals(cls)) {
        finishActivity(activity);
      }
    }
  }
  /**
   * finish all Activity
   */
  public void finishAllActivity() {
    if(activityStack!=null&&activityStack.size()>0)
    {
      for (int i = 0, size = activityStack.size(); i < size; i++) {
        if (null != activityStack.get(i)) {
          activityStack.get(i).finish();
        }
      }
      activityStack.clear();
    }
  }
  /**
   * release all resourse for view
   * @param view
   */
  public static void unbindReferences(View view) {
    try {
      if (view != null) {
        view.destroyDrawingCache();
        unbindViewReferences(view);
        if (view instanceof ViewGroup){
          unbindViewGroupReferences((ViewGroup) view);
        }
      }
    } catch (Throwable e) {
      // whatever exception is thrown just ignore it because a crash is
      // always worse than this method not doing what it's supposed to do
    }
  }
  private static void unbindViewGroupReferences(ViewGroup viewGroup) {
    int nrOfChildren = viewGroup.getChildCount();
    for (int i = 0; i < nrOfChildren; i++) {
      View view = viewGroup.getChildAt(i);
      unbindViewReferences(view);
      if (view instanceof ViewGroup)
        unbindViewGroupReferences((ViewGroup) view);
    }
    try {
      viewGroup.removeAllViews();
    } catch (Throwable mayHappen) {
      // AdapterViews, ListViews and potentially other ViewGroups don't
      // support the removeAllViews operation
    }
  }
  @SuppressWarnings("deprecation")
  private static void unbindViewReferences(View view) {
    // set all listeners to null (not every view and not every API level
    // supports the methods)
    try {
      view.setOnClickListener(null);
      view.setOnCreateContextMenuListener(null);
      view.setOnFocusChangeListener(null);
      view.setOnKeyListener(null);
      view.setOnLongClickListener(null);
      view.setOnClickListener(null);
    } catch (Throwable mayHappen) {
    }
    // set background to null
    Drawable d = view.getBackground();
    if (d != null){
      d.setCallback(null);
    }
    if (view instanceof ImageView) {
      ImageView imageView = (ImageView) view;
      d = imageView.getDrawable();
      if (d != null){
        d.setCallback(null);
      }
      imageView.setImageDrawable(null);
      imageView.setBackgroundDrawable(null);
    }
    // destroy WebView
    if (view instanceof WebView) {
      WebView webview = (WebView) view;
      webview.stopLoading();
      webview.clearFormData();
      webview.clearDisappearingChildren();
      webview.setWebChromeClient(null);
      webview.setWebViewClient(null);
      webview.destroyDrawingCache();
      webview.destroy();
      webview = null;
    }
    if (view instanceof ListView) {
      ListView listView = (ListView) view;
      try {
        listView.removeAllViewsInLayout();
      } catch (Throwable mayHappen) {
      }
      ((ListView) view).destroyDrawingCache();
    }
  }
  /**
   * exit System
   * @param context
   */
  public void exit(Context context) {
    exit(context, true);
  }
  /**
   * exit System
   * @param context
   * @param isClearCache
   */
  @SuppressWarnings("deprecation")
  public void exit(Context context, boolean isClearCache) {
    try {
      finishAllActivity();
      if(context != null){
        ActivityManager activityMgr = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
        activityMgr.restartPackage(context.getPackageName());
      }
//      if(isClearCache){
//        LruCacheManager.getInstance().evictAll();
//        CacheManager.clearAll();
//      }
      System.exit(0);
      android.os.Process.killProcess(android.os.Process.myPid());
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
}

更多關于Android相關內容感興趣的讀者可查看本站專題:《Android編程之activity操作技巧總結》、《Android開發入門與進階教程》、《Android視圖View技巧總結》、《Android文件操作技巧匯總》、《Android資源操作技巧匯總》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

台州市| 手游| 内江市| 镶黄旗| 武川县| 桦川县| 呼和浩特市| 襄垣县| 庆阳市| 敖汉旗| 剑阁县| 景东| 安吉县| 龙门县| 彰化县| 盘山县| 德安县| 南岸区| 茂名市| 遵义市| 忻城县| 宜宾县| 麟游县| 永仁县| 防城港市| 探索| 基隆市| 三原县| 琼结县| 大荔县| 长垣县| 平度市| 阿坝| 梅州市| 山西省| 江华| 湖南省| 伊金霍洛旗| 福贡县| 永吉县| 廉江市|