⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 garbageclear.java

📁 文件浏览的小程序
💻 JAVA
字号:
package cn.zqk.ui;

import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;


public class GarbageClear extends MIDlet {
	
	public static Display disp;
	public static GarbageClear instance;
	
	private  MainMange mainMange;
	
	public static String filepath[]=null;		//{"","","",""};
	
	public static int setid=0;	//mini or custom flag
	
	public static int dircount=0;	//delete dir count;
	
	public static boolean finished =false;	//the delete operation has finished flag
	
	public static String deleinfo="";
	
	public static long savefilesize = 0;		//the total saved file size
	public static long savefilecount = 0;		//the total saved file count
	
	public int  customitemlen= 4;				//the custom setting path count
	
	public static String detailsettingalert="";		//
	
	//test ....
	public static String teststr="";
	public static String teststr2="";
	public static int height =20;
	
	
	public GarbageClear() {
		super();
		instance = this;	
		filepath = new String[customitemlen];
		
		mainMange = new MainMange();		
		disp = Display.getDisplay(this);			
	}
	
	protected void pauseApp() {

	}


	protected void startApp() throws MIDletStateChangeException {
		disp.setCurrent(mainMange);
	}
	
	protected void destroyApp(boolean arg0) throws MIDletStateChangeException {

	}
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -