android 彈出全局加載等待動畫

   /**
     * 彈出loading動畫
     */
    public static void showLoading(Activity activity) {
        View popView = activity.getLayoutInflater().inflate(R.layout.pop_loading_layout, null, false);
        //運行動畫
        ((AnimationDrawable) (popView.findViewById(R.id.carAnim)).getBackground()).start();

        loading = new PopupWindow(popView,
                ViewGroup.LayoutParams.MATCH_PARENT,
                ViewGroup.LayoutParams.MATCH_PARENT);
        loading.setTouchable(true);
        loading.setOutsideTouchable(false);
        loading.setBackgroundDrawable(null);
     //獲取Activity的內容頁             loading.showAtLocation(activity.getWindow().getDecorView().findViewById(android.R.id.content),
                Gravity.START | Gravity.TOP, 0, 0);
        loading.update();
    }
相關文章
相關標籤/搜索