zoukankan      html  css  js  c++  java
  • 抄360于Launcher浮动窗口的屏幕显示内存使用情况(改进版)

    MainActivity例如下列:

    package cc.cc;
    
    import android.os.Bundle;
    import android.view.View;
    import android.view.View.OnClickListener;
    import android.widget.Button;
    import android.app.Activity;
    import android.content.Context;
    import android.content.Intent;
    /**
     *  Demo描写叙述:
     *  仿360在Launcher画面显示内存使用率的浮窗.
     *  当拖动浮窗时,浮窗变成一个小火箭,且在屏幕的底端出现一个火箭发射平台
     *  当拖动浮窗至发射平台手指抬起就可以发射火箭.
     *  
     *  思路整理:
     *  1 涉及到大小两个浮窗和火箭发射平台.而且三者之间有逻辑联系.比方:
     *    显示小浮窗时不显示大浮窗.所以利用DriftingWindowManager
     *    来管理这两个浮窗和平台
     *  2 各用一个类来封装和实现两个浮窗和火箭发射平台的操作
     *  3 以上三个类均继承自Layout
     *  
     *  
     *  学习资料:
     *  1 http://blog.csdn.net/guolin_blog/article/details/16919859
     *  2 http://blog.csdn.net/feng88724/article/details/6362710
     *  3 http://blog.csdn.net/hudashi/article/details/6901118
     *  4 http://blog.csdn.net/hudashi/article/details/7060882
     *  5 http://blog.csdn.net/hudashi/article/details/7061240
     *    Thank you very much
     *
     */
    public class MainActivity extends Activity {
    	private Context mContext;
        private Button mStartButton;
    	@Override
    	protected void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.main);
    		init();
    	}
    	
    	private void init(){
    		mContext=this;
    		mStartButton=(Button) findViewById(R.id.button);
    		mStartButton.setOnClickListener(new OnClickListener() {
    			@Override
    			public void onClick(View view) {
    				Intent intent=new Intent();
    				intent.setAction("dws");
    				mContext.startService(intent);
    				finish();
    			}
    		});
    	}
    
    	
    
    }
    

    DriftingWindowManager例如以下:
    package cc.cc;
    
    import android.content.Context;
    import android.graphics.PixelFormat;
    import android.view.Gravity;
    import android.view.WindowManager;
    import android.view.WindowManager.LayoutParams;
    import android.widget.TextView;
    
    /**
     * 管理大小浮动窗体
     * 在该应用中主要包括了大小两个浮动窗体还有火箭发射平台及其相应的操作
     * 比方显示,更新和移除等,所以就写了个DriftingWindowManager
     * 来实施这些操作.
     * 至于大小浮窗各自要做的操作则是在DriftingSmallWindow和DriftingBigWindow
     * 各个类中详细实施的.
     * 这个和平时其它的代码原理是一样的:
     * 比方在一个类A中使用了(相似于此处的浮窗显示,更新,移除)B和C的对象.
     * 但B和C对象的方法是在各自的类中实现的.
     */
    public class DriftingWindowManager {
    	private static WindowManager mWindowManager=null;
    	private static DriftingSmallWindow mDriftingSmallWindow=null;
    	private static DriftingBigWindow mDriftingBigWindow=null;
    	//注意该LayoutParams属于android.view.WindowManager.LayoutParams
    	private static LayoutParams mDriftingSmallWindowLayoutParams;
    	private static LayoutParams mDriftingBigWindowLayoutParams;
    	
    	private static RocketPlatform mRocketPlatform;
    	private static LayoutParams mRocketPlatformLayoutParams;
    	
    	/**
    	 * 显示小浮窗
    	 * 显示位置为屏幕中间右对齐
    	 */
    	public static void showDriftingSmallWindow(Context context) {
    		WindowManager windowManager = getWindowManager(context);
    		int screenWidth = windowManager.getDefaultDisplay().getWidth();
    		int screenHeight = windowManager.getDefaultDisplay().getHeight();
    		//new了一个DriftingSmallWindow对象,在后面会用WindowManager将
    		//其加入到屏幕中
    		mDriftingSmallWindow = new DriftingSmallWindow(context);
    		if (mDriftingSmallWindowLayoutParams == null) {
    			mDriftingSmallWindowLayoutParams = new LayoutParams();
    			mDriftingSmallWindowLayoutParams.type = LayoutParams.TYPE_PHONE;
    			mDriftingSmallWindowLayoutParams.format = PixelFormat.RGBA_8888;
    			mDriftingSmallWindowLayoutParams.flags = 
    			LayoutParams.FLAG_NOT_TOUCH_MODAL| LayoutParams.FLAG_NOT_FOCUSABLE;
    			mDriftingSmallWindowLayoutParams.gravity = Gravity.LEFT| Gravity.TOP;
    			mDriftingSmallWindowLayoutParams.width = DriftingSmallWindow.driftingSmallWindowWidth;
    			mDriftingSmallWindowLayoutParams.height = DriftingSmallWindow.driftingSmallWindowHeight;
    			//使小浮窗在屏幕上垂直居中,水平靠右的位置显示
    			mDriftingSmallWindowLayoutParams.x = screenWidth-DriftingSmallWindow.driftingSmallWindowWidth;
    			mDriftingSmallWindowLayoutParams.y = screenHeight / 2;
    		}
    		//当显示小浮窗的时保存小浮窗的LayoutParams至该DriftingSmallWindow对象
    		//由于每次移动小浮窗的时候须要改动该LayoutParams的參数值X和Y
    		mDriftingSmallWindow.saveWindowManagerLayoutParams(mDriftingSmallWindowLayoutParams);
    		mWindowManager.addView(mDriftingSmallWindow,mDriftingSmallWindowLayoutParams);
    	}
    	
     
        
        /**
         * 更新小浮窗
         */
        public static void updateDriftingSmallWindow(Context context){
        	if(mDriftingSmallWindow!=null){
        		TextView percentTextView=(TextView) mDriftingSmallWindow.findViewById(R.id.percentTextView);
        		percentTextView.setText(Utils.getAvailMemoryPercent(context));
        	}
        }
        
    	
        /**
         * 移除小浮窗
         */
        public static void removeDriftingSmallWindow(Context context){
        	mWindowManager=getWindowManager(context);
        	if(mWindowManager!=null&&mDriftingSmallWindow!=null){
        		mWindowManager.removeView(mDriftingSmallWindow);
        		mDriftingSmallWindow=null;
        	}
        }
        
        
        /**
         * 显示火箭发射平台
         */
    	public static void showRocketPlatform(Context context) {
    		WindowManager windowManager = getWindowManager(context);
    		int screenWidth = windowManager.getDefaultDisplay().getWidth();
    		int screenHeight = windowManager.getDefaultDisplay().getHeight();
    		mRocketPlatform=new RocketPlatform(context);
    		if (mRocketPlatformLayoutParams == null) {
    			mRocketPlatformLayoutParams = new LayoutParams();
    			mRocketPlatformLayoutParams.x = screenWidth / 2- RocketPlatform.rocketPlatformWidth / 2;
    			mRocketPlatformLayoutParams.y = screenHeight - RocketPlatform.rocketPlatformHeight;
    			mRocketPlatformLayoutParams.type = LayoutParams.TYPE_PHONE;
    			mRocketPlatformLayoutParams.format = PixelFormat.RGBA_8888;
    			mRocketPlatformLayoutParams.gravity = Gravity.LEFT | Gravity.TOP;
    			mRocketPlatformLayoutParams.width = RocketPlatform.rocketPlatformWidth;
    			mRocketPlatformLayoutParams.height = RocketPlatform.rocketPlatformHeight;
    		}
    		windowManager.addView(mRocketPlatform,mRocketPlatformLayoutParams);
    	}
    	
    	
    	/**
    	 * 更新火箭发射平台状态
    	 */
    	public static void updateRocketPlatformStatus(){
    		if(mRocketPlatform!=null){
    			mRocketPlatform.setPlatformBackground(isReadyToFire());
    		}
    	}
    	
    	/**
    	 * 推断是否发射火箭
    	 */
    	public static boolean isReadyToFire(){
    		boolean isFire=false;
    		if((mDriftingSmallWindowLayoutParams.x>mRocketPlatformLayoutParams.x)&&
    		  (mDriftingSmallWindowLayoutParams.x+mDriftingSmallWindowLayoutParams.width<=mRocketPlatformLayoutParams.x+mRocketPlatformLayoutParams.width)&&
    		  (mDriftingSmallWindowLayoutParams.y+mDriftingSmallWindowLayoutParams.height>=mRocketPlatformLayoutParams.y)){
    			isFire=true;
    		}	
    		return isFire;
    	}
        
        
    	/**
    	 * 移除火箭发射平台
    	 */
        public static void removeRocketPlatform(Context context){
        	mWindowManager=getWindowManager(context);
        	if(mWindowManager!=null&&mRocketPlatform!=null){
        		mWindowManager.removeView(mRocketPlatform);
        		mRocketPlatform=null;
        	}
        }
        
        
        /**
         * 显示大浮窗
         * 显示位置为屏幕中间
         * 
         * 注意细节问题
         * 例如以下写法,有偏差,显示效果并不好
         * mDriftingBigWindowLayoutParams.x = screenWidth / 2;
         * mDriftingBigWindowLayoutParams.y = screenHeight / 2;
         * 给人的感觉是大浮窗并没有在屏幕中间位置.
         * 由于这个mDriftingBigWindowLayoutParams.x(y)指的是大浮窗
         * 在屏幕上显示的x(y)的開始坐标值,即从哪个坐标開始摆放大浮窗.
         * 极端地说假设大浮窗就沙子那么大,那么这么做就没有问题,由于大浮窗
         * 本身就没有什么宽和高.
         * 但在实际中我们还要考虑到控件本身(此处的大浮窗)的长和宽,做到
         * 真的居中显示
         * 所以应该这么写:
         * mDriftingBigWindowLayoutParams.x = screenWidth / 2- DriftingBigWindow.width / 2;
         * mDriftingBigWindowLayoutParams.y = screenHeight / 2- DriftingBigWindow.height / 2;
         * 相似的问题在小浮窗的拖动过程中也有
         */
    	public static void showDriftingBiglWindow(Context context) {
    		WindowManager windowManager = getWindowManager(context);
    		int screenWidth = windowManager.getDefaultDisplay().getWidth();
    		int screenHeight = windowManager.getDefaultDisplay().getHeight();
    		mDriftingBigWindow = new DriftingBigWindow(context);
    		if (mDriftingBigWindowLayoutParams == null) {
    			mDriftingBigWindowLayoutParams = new LayoutParams();
    			mDriftingBigWindowLayoutParams.x = screenWidth / 2- DriftingBigWindow.width / 2;
    			mDriftingBigWindowLayoutParams.y = screenHeight / 2- DriftingBigWindow.height / 2;
    			mDriftingBigWindowLayoutParams.type = LayoutParams.TYPE_PHONE;
    			mDriftingBigWindowLayoutParams.format = PixelFormat.RGBA_8888;
    			mDriftingBigWindowLayoutParams.gravity = Gravity.LEFT | Gravity.TOP;
    			mDriftingBigWindowLayoutParams.width = DriftingBigWindow.width;
    			mDriftingBigWindowLayoutParams.height = DriftingBigWindow.height;
    		}
    		windowManager.addView(mDriftingBigWindow,mDriftingBigWindowLayoutParams);
    	}
        
        
    	/**
    	 * 移除大浮窗
    	 */
        public static void removeDriftingBiglWindow(Context context){
        	mWindowManager=getWindowManager(context);
        	if(mWindowManager!=null&&mDriftingBigWindow!=null){
        		mWindowManager.removeView(mDriftingBigWindow);
        		mDriftingBigWindow=null;
        	}
        }
       
        
       
        
        /**
         * 是否有浮窗在Launcher上显示
         */
        public static boolean isDriftingWindowShowing(){
        	if (mDriftingSmallWindow!=null||mDriftingBigWindow!=null) {
    			return true;
    		} else {
               return false;
    		}
        }
        
        
        /**
         * 获取WindowManager
         */
        private static WindowManager getWindowManager(Context context){
        	if (mWindowManager==null) {
    			mWindowManager=(WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
    		}
        	return mWindowManager;
        }
        
    }
    

    DriftingWindowService例如以下:
    package cc.cc;
    
    import java.util.Timer;
    import java.util.TimerTask;
    import android.app.Service;
    import android.content.Context;
    import android.content.Intent;
    import android.os.Handler;
    import android.os.IBinder;
    /**
     * 利用该服务进行定时任务
     *
     */
    public class DriftingWindowService extends Service {
        private Timer mTimer;
        private TimerTask mTimerTask;
        private Context mContext;
        private Handler mHandler;
    	@Override
    	public void onCreate() {
    		super.onCreate();
    	}
    	
    	@Override
    	public void onStart(Intent intent, int startId) {
    		super.onStart(intent, startId);
    		mContext=this;
    		mHandler=new Handler();
    		mTimer=new Timer();
    		mTimerTask=new TimerTaskSubclass();
    		//开启定时的任务
    		mTimer.schedule(mTimerTask, 100, 500);
    	}
    	
    	@Override
    	public IBinder onBind(Intent arg0) {
    		return null;
    	}
    	
    	@Override
    	public void onDestroy() {
    		super.onDestroy();
    		if (mTimer!=null) {
    			mTimer.cancel();
    		}
    	}
    	
    	
    	private class TimerTaskSubclass extends TimerTask{
    		@Override
    		public void run() {
    			//当前是Launcher,则显示小浮窗
    			if (Utils.currentIsLauncher(mContext)&&!DriftingWindowManager.isDriftingWindowShowing()) {
    				mHandler.post(new Runnable() {
    					@Override
    					public void run() {
    						DriftingWindowManager.showDriftingSmallWindow(mContext);
    					}
    				});
    			}
    			
    			//当前不是Launcher且有浮窗显示,则移除浮窗
    			if(!Utils.currentIsLauncher(mContext)&&DriftingWindowManager.isDriftingWindowShowing()){
    				mHandler.post(new Runnable() {
    					@Override
    					public void run() {
    						DriftingWindowManager.removeDriftingSmallWindow(mContext);
    						DriftingWindowManager.removeDriftingBiglWindow(mContext);
    					}
    				});
    			}
    			
    			//当前是Launcher,则更新内存使用率
    			if(Utils.currentIsLauncher(mContext)){
    				mHandler.post(new Runnable() {
    					@Override
    					public void run() {
    						DriftingWindowManager.updateDriftingSmallWindow(mContext);
    					}
    				});
    			}
    		}
    		
    	}
    
    }
    

    DriftingBigWindow例如以下:
    package cc.cc;
    
    import android.content.Context;
    import android.content.Intent;
    import android.view.LayoutInflater;
    import android.view.View;
    import android.widget.Button;
    import android.widget.LinearLayout;
    /**
     *大浮窗
     *
     *大浮窗继承自LinearLayout
     *该大浮窗主要实现的功能
     *1 关闭大浮窗显示小浮窗
     *2 关闭全部浮窗且停止对于内存使用率的监控
     *
     *注意方法:
     *LayoutInflater.inflate(int resource, ViewGroup root)的第二參数
     *若设置了root,那么会把新生成的View连接到root,该方法的返回为root.
     *否未设置root,则返回的是新生成的View
     */
    public class DriftingBigWindow extends LinearLayout {
    	//整个大浮窗的宽和高
        public static int width=0;
        public static int height=0;
        private Context mContext;
    	public DriftingBigWindow(Context context) {
    		super(context);
    		mContext=context;
    		LayoutInflater layoutInflater=LayoutInflater.from(mContext);
    		View bigWindowView=layoutInflater.inflate(R.layout.drifting_window_big, this);
    		View driftingBigWindowRootView=bigWindowView.findViewById(R.id.driftingBigWindowRootView);
    		//获取大浮窗整个布局的宽和高
    		width=driftingBigWindowRootView.getLayoutParams().width;
    		height=driftingBigWindowRootView.getLayoutParams().height;
    		//停止服务且移除浮窗
    		Button closeButton=(Button) bigWindowView.findViewById(R.id.closeButton);
    		closeButton.setOnClickListener(new ClickListenerImpl());
    		//显示小浮窗
    		Button backButton=(Button) bigWindowView.findViewById(R.id.backButton);
    		backButton.setOnClickListener(new ClickListenerImpl());
    	}
    	
    	private class ClickListenerImpl implements OnClickListener{
    		@Override
    		public void onClick(View view) {
    			switch (view.getId()) {
    			case R.id.closeButton:
                    Intent intent=new Intent();
                    intent.setAction("dws");
                    mContext.stopService(intent);
                    DriftingWindowManager.removeDriftingSmallWindow(mContext);
                    DriftingWindowManager.removeDriftingBiglWindow(mContext);
    				break;
    			case R.id.backButton:
                    DriftingWindowManager.showDriftingSmallWindow(mContext);
                    DriftingWindowManager.removeDriftingBiglWindow(mContext);
    				break;
    			default:
    				break;
    			}
    
    		}
    		
    	}
    
    }
    

    DriftingSmallWindow例如以下:
    package cc.cc;
    
    import android.content.Context;
    import android.os.AsyncTask;
    import android.view.LayoutInflater;
    import android.view.MotionEvent;
    import android.view.View;
    import android.view.WindowManager;
    import android.widget.ImageView;
    import android.widget.LinearLayout;
    import android.widget.TextView;
    /**
     *小浮窗
     *
     *小浮窗继承自LinearLayout
     *该小浮窗主要实现的功能:
     *1 显示手机的内存使用率
     *2 在Home界面被任意移动位置
     *  在移动(Move)过程中小浮窗变成小火箭
     *  所以重点是实现TouchListener,在Touch监听中
     *  不断调用mWindowManager.updateViewLayout()
     *  改动小浮窗或者小火箭在屏幕上的LayoutParams
     *
     *注意方法:
     *LayoutInflater.inflate(int resource, ViewGroup root)的第二參数
     *若设置了root,那么会把新生成的View连接到root,该方法的返回为root.
     *否未设置root,则返回的是新生成的View
     */
    public class DriftingSmallWindow extends LinearLayout {
    	//小浮窗的宽和高
    	public static int driftingSmallWindowWidth=0;
    	public static int driftingSmallWindowHeight=0;
    	private float XInScreen_Down = 0;
    	private float YInScreen_Down = 0;
    	private float XInScreen_Move = 0;
    	private float YInScreen_Move = 0;
    	private float XInScreen_Up = 0;
    	private float YInScreen_Up = 0;
    	private float XInView_Down=0;
    	private float YInView_Down=0;
    	private Context mContext;
    	private View mRootView;
    	private View mDriftingSmallWindowView;
    	private WindowManager mWindowManager;
    	private boolean isPressed=false;
    	private ImageView mRocketImageView;
    	private int rocketWidth;
    	private int rocketHeight;
    	private static WindowManager.LayoutParams mWindowManagerLayoutParams;
    	public DriftingSmallWindow(Context context) {
    		super(context);
    		mContext=context;
    		mWindowManager=(WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
    		LayoutInflater layoutInflater = LayoutInflater.from(context);
    		mRootView=layoutInflater.inflate(R.layout.drifting_window_small, this);
    		mDriftingSmallWindowView=mRootView.findViewById(R.id.driftingSmallWindowRootView);
    		TextView percentTextView=(TextView) mRootView.findViewById(R.id.percentTextView);
    		
    		//获取小浮窗布局的宽和高
    		driftingSmallWindowWidth=mDriftingSmallWindowView.getLayoutParams().width;
    		driftingSmallWindowHeight=mDriftingSmallWindowView.getLayoutParams().height;
    		percentTextView.setText(Utils.getAvailMemoryPercent(context));
    		
    		//获取火箭的宽和高
    		mRocketImageView=(ImageView) findViewById(R.id.rocketImageView);
    		rocketWidth=mRocketImageView.getLayoutParams().width;
    		rocketHeight=mRocketImageView.getLayoutParams().height;
    		
    		this.setOnTouchListener(new TouchListenerImpl());
    		//this.setOnClickListener(new ClickListenerImpl());
    	}
    	
    	/**
    	 * 利用该方式监听点击事件不靠谱
    	 * 所以在MotionEvent.ACTION_UP中处理点击事件
    	 */
    	private class ClickListenerImpl implements OnClickListener{
    		@Override
    		public void onClick(View view) {
    		}
    	}
    	
    	
    	/**
    	 * 对于小浮窗Touch事件的监听
    	 * 注意在MotionEvent.ACTION_UP中处理点击事件
    	 */
    	private class TouchListenerImpl implements OnTouchListener {
    		@Override
    		public boolean onTouch(View view, MotionEvent event) {
    			int statusBarHeight = Utils.getStatusBarHeight(mContext);
    			switch (event.getAction()) {
    			case MotionEvent.ACTION_DOWN:
    				isPressed = true;
    				XInScreen_Down = event.getRawX();
    				YInScreen_Down = event.getRawY() - statusBarHeight;
    				XInView_Down = event.getX();
    				YInView_Down = event.getY();
    				break;
    			case MotionEvent.ACTION_MOVE:
    				XInScreen_Move = event.getRawX();
    				YInScreen_Move = event.getRawY() - statusBarHeight;
    				// 显示小火箭
    				showRocketOrDriftingSmallWindow();
    				// 更新小火箭的显示位置和火箭发射平台的背景图
    				updateWindowManagerLayoutParams();
    
    				break;
    			case MotionEvent.ACTION_UP:
    				isPressed = false;
    				XInScreen_Up = event.getRawX();
    				YInScreen_Up = event.getRawY() - statusBarHeight;
    				//发射火箭
    				if (DriftingWindowManager.isReadyToFire()) {
    					fireRocket();
    			    //显示小浮窗
    				} else {
    					showRocketOrDriftingSmallWindow();
    					if (XInScreen_Down == XInScreen_Up&&YInScreen_Down == YInScreen_Up) {
    						showDriftingBigWindow();
    					}
    				}
    				break;
    
    			default:
    				break;
    			}
    
    			return true;
    		}
    
    	};
    	
    	
    	
    	/**
    	 * 保存小浮窗在Window中的布局參数
    	 * 
    	 * 当我们使用DriftingWindowManager第一次显示小浮窗时须要用一个參数WindowManager.LayoutParams
    	 * 来设置小浮窗在屏幕中显示位置等參数.
    	 * 由于每次移动小浮窗或者小火箭的时候须要改动该LayoutParams的參数值X和Y.
    	 * 所以保存该小浮窗的LayoutParams至该DriftingSmallWindow对象.
    	 * 事实上在这个小浮窗中包括了两个东西:除了小浮窗另一个火箭.
    	 * 在初始化时隐藏了小火箭,仅仅显示了小浮窗.
    	 * 同一时刻仅仅显示当中的一个,而且两者的宽和高不一致.
    	 * 所以须要不断改动WindowManager.LayoutParams变量
    	 * 
    	 * 说白了就是保存了一个对象的某个属性值,而且在随后的操作中不断改动该属性值
    	 */
    	public static void saveWindowManagerLayoutParams(WindowManager.LayoutParams layoutParams){
    		mWindowManagerLayoutParams=layoutParams;
    	}
    	
    	
    	/**
    	 * 显示火箭或者小浮窗
    	 */
    	private void showRocketOrDriftingSmallWindow(){
    		if(isPressed&&mRocketImageView.getVisibility()!=View.VISIBLE){
    			mWindowManagerLayoutParams.width=rocketWidth;
    			mWindowManagerLayoutParams.height=rocketHeight;
    			mWindowManager.updateViewLayout(this, mWindowManagerLayoutParams);
    			mDriftingSmallWindowView.setVisibility(View.GONE);
    			mRocketImageView.setVisibility(View.VISIBLE);
    			//显示火箭发射台
    			DriftingWindowManager.showRocketPlatform(mContext);
    		}
    		
    		if(!isPressed){
    			mWindowManagerLayoutParams.width=driftingSmallWindowWidth;
    			mWindowManagerLayoutParams.height=driftingSmallWindowHeight;
    			mWindowManager.updateViewLayout(this, mWindowManagerLayoutParams);
    			mDriftingSmallWindowView.setVisibility(View.VISIBLE);
    			mRocketImageView.setVisibility(View.GONE);
    			//移除火箭发射台
    			DriftingWindowManager.removeRocketPlatform(mContext);
    		}
    	}
    	
    	
    	/**
    	 * 更新小火箭的显示位置和火箭发射平台的背景图
    	 * 
    	 * 注意事项:
         * X(Y)InScreen_Move表示触摸点离屏幕左上角的距离
         * X(Y)InView_Down表示触摸点离DriftingSmallWindow火箭自身左上角的距离.
         * 两者相减即得DriftingSmallWindow火箭左上角的坐标
    	 */
    	private void updateWindowManagerLayoutParams(){
    		mWindowManagerLayoutParams.x=(int) (XInScreen_Move-XInView_Down);
    		mWindowManagerLayoutParams.y=(int) (YInScreen_Move-YInView_Down);
    		mWindowManager.updateViewLayout(this, mWindowManagerLayoutParams);
    		//更新火箭发射平台的状态
    		DriftingWindowManager.updateRocketPlatformStatus();
    	}
    	
    	/**
    	 * 发射小火箭
    	 */
    	private void fireRocket(){
    		//移除火箭发射平台
    		DriftingWindowManager.removeRocketPlatform(mContext);
    		FireRocketAsyncTask fireRocketAsyncTask=new FireRocketAsyncTask();
    		fireRocketAsyncTask.execute();
    	}
    	
    	/**
    	 * 显示大浮窗且关闭小浮窗
    	 */
    	private void showDriftingBigWindow(){
    		DriftingWindowManager.showDriftingBiglWindow(mContext);
    		DriftingWindowManager.removeDriftingSmallWindow(mContext);
    	}
    	
    	/**
    	 * 发射火箭的异步任务
    	 */
    	private class FireRocketAsyncTask extends AsyncTask<Void, Void, Void>{
    		@Override
    		protected Void doInBackground(Void... arg0) {
    			//不断地改动mWindowManagerLayoutParams中的Y值
    			while(mWindowManagerLayoutParams.y>0){
    				mWindowManagerLayoutParams.y=mWindowManagerLayoutParams.y-10;
    				publishProgress();
    				try {
    					Thread.sleep(7);
    				} catch (InterruptedException e) {
    					e.printStackTrace();
    				}
    			}
    			return null;
    		}
    		@Override
    		protected void onProgressUpdate(Void... values) {
    			super.onProgressUpdate(values);
    			mWindowManager.updateViewLayout(DriftingSmallWindow.this, mWindowManagerLayoutParams);
    		}
    		@Override
    		protected void onPostExecute(Void result) {
    			super.onPostExecute(result);
    			//恢复成悬浮窗体
    			showRocketOrDriftingSmallWindow();
    			//恢复原来的位置
    			mWindowManagerLayoutParams.x=(int) (XInScreen_Down-XInView_Down);
    			mWindowManagerLayoutParams.y=(int) (YInScreen_Down-YInView_Down);
    			mWindowManager.updateViewLayout(DriftingSmallWindow.this, mWindowManagerLayoutParams);
    		}
    	}
    
    }
    

    RocketPlatform例如以下:
    package cc.cc;
    
    import android.content.Context;
    import android.view.LayoutInflater;
    import android.view.View;
    import android.widget.ImageView;
    import android.widget.LinearLayout;
    
    public class RocketPlatform extends LinearLayout {
    	private static ImageView mPlatformImageView;
    	public static int rocketPlatformWidth=0;
    	public static int rocketPlatformHeight=0;
    	public RocketPlatform(Context context) {
    		super(context);
    		LayoutInflater layoutInflater=LayoutInflater.from(context);
    		View rootView=layoutInflater.inflate(R.layout.rocket_platform, this);
    		mPlatformImageView=(ImageView) rootView.findViewById(R.id.imageView);
    		rocketPlatformWidth=mPlatformImageView.getLayoutParams().width;
    		rocketPlatformHeight=mPlatformImageView.getLayoutParams().height;
    	}
    	
    	/**
    	 * 根据是否发射小火箭而改动发射平台的背景图片
    	 */
    	public static void setPlatformBackground(boolean isReadyToFire){
    		if (isReadyToFire) {
    			mPlatformImageView.setImageResource(R.drawable.platform_bg_fire);
    		}else{
    			mPlatformImageView.setImageResource(R.drawable.platform_bg_normal);
    		}
    	}
    
    }
    

    Utils例如以下:

    package cc.cc;
    
    import java.io.BufferedReader;
    import java.io.FileReader;
    import java.io.IOException;
    import java.lang.reflect.Field;
    import java.util.List;
    import android.app.ActivityManager;
    import android.app.ActivityManager.MemoryInfo;
    import android.app.ActivityManager.RunningTaskInfo;
    import android.content.ComponentName;
    import android.content.Context;
    
    public class Utils {
    	/**
    	 * 获取设备状态栏高度
    	 */
    	public static int getStatusBarHeight(Context context) {
    		int statusBarHeight = 0;
    		try {
    			Class clazz = Class.forName("com.android.internal.R$dimen");
    			Object object = clazz.newInstance();
    			Field field = clazz.getField("status_bar_height");
    			// 反射出该对象中status_bar_height字段所相应的在R文件的id值
    			// 该id值由系统工具自己主动生成,文档描写叙述例如以下:
    			// The desired resource identifier, as generated by the aapt tool.
    			int id = Integer.parseInt(field.get(object).toString());
    			// 根据id值获取到状态栏的高度,单位为像素
    			statusBarHeight = context.getResources().getDimensionPixelSize(id);
    		} catch (Exception e) {
    		}
    		return statusBarHeight;
    	}
    	
    	
    	
    	/**
    	 * 推断设备当前是否停留在Launcher
    	 */
    	public static boolean currentIsLauncher(Context context){
    		boolean isLauncher=false;
    		String topActivityName=getTopActivityName(context);
    		if (topActivityName!=null&&topActivityName.startsWith("HomeActivity")) {
    			isLauncher=true;
    		}
    		return isLauncher;
    	}
    	
    	
    	
    	/**
    	 * 获取栈顶Activity名称
    	 */
    	public static String getTopActivityName(Context context) {
    		String topActivityName = null;
    		ActivityManager activityManager =
    		(ActivityManager)(context.getSystemService(android.content.Context.ACTIVITY_SERVICE));
    		List<RunningTaskInfo> runningTaskInfos = activityManager.getRunningTasks(1);
    		if (runningTaskInfos != null) {
    			ComponentName f = runningTaskInfos.get(0).topActivity;
    			String topActivityClassName = f.getClassName();
    			String temp[] = topActivityClassName.split("\.");
    			// 栈顶Activity的名称
    			topActivityName = temp[temp.length - 1];
    		}
    		return topActivityName;
    	}
    	
    	
    	
    	/**
    	 * 获取当前内存的可用率
    	 */
    	public static String getAvailMemoryPercent(Context context){
    		String info=null;
    		long availMemory=getAvailMemory(context);
    		long totalMemory=getTotalMemory();
    		float percent=(availMemory*100/totalMemory);
    		info=percent+"%";
    		return info;
    	}
    	
    	
    	
    	/**
    	 * 获取内存总大小
    	 */
    	public static long getTotalMemory() {
    		// 系统的内存信息文件
    		String filePath = "/proc/meminfo";
    		String lineString;
    		String[] stringArray;
    		long totalMemory = 0;
    		try {
    			FileReader fileReader = new FileReader(filePath);
    			BufferedReader bufferedReader = new BufferedReader(fileReader,1024 * 8);
    			// 读取meminfo第一行,获取系统总内存大小
    			lineString = bufferedReader.readLine();
    			// 依照空格拆分
    			stringArray = lineString.split("\s+");
    			// 获得系统总内存,单位KB
    			totalMemory = Integer.valueOf(stringArray[1]).intValue();
    			bufferedReader.close();
    		} catch (IOException e) {
    		}
    		return totalMemory / 1024;
    	}
    
    	
    	
    	/**
    	 * 获取可用内存大小
    	 */
    	public static long getAvailMemory(Context context) {
    		ActivityManager activityManager = 
    		(ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
    		MemoryInfo memoryInfo = new MemoryInfo();
    		activityManager.getMemoryInfo(memoryInfo);
    		return memoryInfo.availMem / (1024 * 1024);
    	}
    
    }
    

    main.xml例如以下:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
       >
    
        <Button
            android:id="@+id/button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="开启浮动窗体"
            android:layout_centerInParent="true"
        />
    
    </RelativeLayout>

    drifting_window_big.xml例如以下:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
       >
    
        <Button
            android:id="@+id/button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="开启浮动窗体"
            android:layout_centerInParent="true"
        />
    
    </RelativeLayout>

    drifting_window_small.xml例如以下:

    <?xml version="1.0" encoding="utf-8"?

    > <!-- 当按住浮窗时,浮窗变为小火箭.所以在此採用 FrameLayout效果会好一些--> <!-- 假设採用LinearLayout那么会在按下点的附近出现火箭,效果欠佳 --> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" > <LinearLayout android:id="@+id/driftingSmallWindowRootView" android:layout_width="65dip" android:layout_height="25dip" > <TextView android:id="@+id/percentTextView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" android:gravity="center" android:textColor="#ff0000" /> </LinearLayout> <ImageView android:id="@+id/rocketImageView" android:layout_width="45dip" android:layout_height="90dip" android:src="@drawable/rocket" android:visibility="gone" /> </FrameLayout>


    rocket_platform.xml例如以下:

    <?

    xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" > <ImageView android:id="@+id/imageView" android:layout_width="200dip" android:layout_height="85dip" android:src="@drawable/platform_bg_normal" /> </LinearLayout>


    AndroidManifest.xml例如以下:

    <?

    xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="cc.cc" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="10" /> <!-- 注意权限 --> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> <uses-permission android:name="android.permission.GET_TASKS"/> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name="cc.cc.MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <!-- 注冊服务 --> <service android:name="cc.cc.DriftingWindowService"> <intent-filter > <action android:name="dws"/> </intent-filter> </service> </application> </manifest>



    版权声明:本文博主原创文章。博客,未经同意不得转载。

  • 相关阅读:
    图论算法(三) 最短路SPFA算法
    图论算法(二)最短路算法:Floyd算法!
    图论算法(一)存图与STL第六弹——vector容器
    C++指针变量的基本写法
    杂记——深度优先搜索(dfs)与出题感想
    分治算法(二分查找)、STL函数库的应用第五弹——二分函数
    网站开发小技巧总结
    网站开发动态效果插件
    jquery获得ul下li的个数
    jquery的循环函数和点击事件绑定
  • 原文地址:https://www.cnblogs.com/mengfanrong/p/4822976.html
Copyright © 2011-2022 走看看