CustomFormShowThread.java
上传用户:sygbg6
上传日期:2020-12-29
资源大小:4884k
文件大小:0k
源码类别:

游戏

开发平台:

Java

  1. package cn.com.imageanalyze.customform;
  2. import javax.microedition.lcdui.Display;
  3. /**
  4.  * dialog显示线程
  5.  * @author Administrator
  6.  *
  7.  */
  8. public class CustomFormShowThread extends Thread {
  9. private CustomForm form;
  10. public CustomFormShowThread(CustomForm form){
  11. this.form = form;
  12. }
  13. public void run(){
  14. form.paintSelf();
  15. Display.getDisplay(form.parent).setCurrent(form);
  16. }
  17. }