亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? photoalbum.java

?? J2ME PHOTO處理
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/* * * Copyright ? 2007 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */package example.photoalbum;import example.About;import java.io.DataInputStream;import java.io.IOException;import java.util.Vector;import javax.microedition.io.Connector;import javax.microedition.io.ContentConnection;import javax.microedition.io.HttpConnection;import javax.microedition.lcdui.*;import javax.microedition.midlet.*;import javax.microedition.rms.*;/** * The PhotoAlbum MIDlet provides the commands and screens * that implement a simple photograph and animation album. * The images and animations to be displayed are configured * in the descriptor file with attributes. * <p> * Options are provided to to vary the speed of display * and the frame style. * */public class PhotoAlbum extends MIDlet implements CommandListener, ItemStateListener, Runnable {    /** The Command object for the About command */    private Command aboutCommand;    /** The Command object for the Exit command */    private Command exitCommand;    /** The Command object for the Ok command */    private Command okCommand;    /** The Command object for the Options command */    private Command optionsCommand;    /** The Command object for the Back command */    private Command backCommand;    /** The Command object for the Cancel command */    private Command cancelCommand;    /** The Form object for the Progress form */    private Form progressForm;    /** The Gauge object for the Progress gauge */    private Gauge progressGauge;    /** The Form object for the Options command */    private Form optionsForm;    /** Set of choices for the border styles */    private ChoiceGroup borderChoice;    /** Set of choices for the speeds */    private ChoiceGroup speedChoice;    /** The current display for this MIDlet */    private Display display;    /** The PhotoFrame that displays images */    private PhotoFrame frame;    /** The Alert for messages */    private Alert alert;    /** Contains Strings with the image names */    private Vector imageNames;    /** List of Image titles for user to select */    private List imageList;    /** Name of current image, may be null */    private String imageName;    /** Current thread loading images, may be null */    private Thread thread;    /** Name of persistent storage */    private final String optionsName = "PhotoAlbum";    /** Persistent storage for options */    private RecordStore optionsStore;    private boolean firstTime = true;    /**     * Construct a new PhotoAlbum MIDlet and initialize the base options     * and main PhotoFrame to be used when the MIDlet is started.     */    public PhotoAlbum() {        display = Display.getDisplay(this);        exitCommand = new Command("Exit", Command.EXIT, 1);        optionsCommand = new Command("Options", Command.SCREEN, 1);        okCommand = new Command("Ok", Command.OK, 3);        backCommand = new Command("Back", Command.BACK, 3);        cancelCommand = new Command("Cancel", Command.CANCEL, 1);        aboutCommand = new Command("About", Command.HELP, 30);        frame = new PhotoFrame();        frame.setStyle(2);        frame.setSpeed(2);        frame.addCommand(optionsCommand);        frame.addCommand(backCommand);        frame.setCommandListener(this);        alert = new Alert("Warning");        setupImageList();        firstTime = true;    }    /**     * Start up the Hello MIDlet by setting the PhotoFrame     * and loading the initial images.     */    protected void startApp() {        if (firstTime) {            if (imageList.size() > 0) {                display.setCurrent(imageList);                openOptions();                restoreOptions();            } else {                alert.setString("No images configured.");                display.setCurrent(alert, imageList);            }            firstTime = false;        }        openOptions();        restoreOptions();    }    /**     * Pause is used to release the memory used by Image.     * When restarted the images will be re-created.     * Save the options for the next restart.     */    protected void pauseApp() {        saveOptions();    }    /**     * Destroy must cleanup everything not handled by the garbage collector.     * In this case there is nothing to cleanup.     * Save the options for the next restart.     * @param unconditional true if this MIDlet should always cleanup     */    protected void destroyApp(boolean unconditional) {        saveOptions();        frame.reset(); // Discard images cached in the frame.        saveOptions();        closeOptions();    }    /**     * Respond to commands. Commands are added to each screen as     * they are created.  Each screen uses the PhotoAlbum MIDlet as the     * CommandListener. All commands are handled here:     * <UL>     * <LI>Select on Image List - display the progress form and start the thread     *  to read in the images.     * <LI>Options - display the options form.     * <LI>Ok on the Options form - returns to the PhotoFrame.     * <LI>Back - display the Image List, deactivating the PhotoFrame.     * <LI>Cancel - display the image List and stop the thread loading images.     * <LI>Exit - images are released and notification is given that the MIDlet     *  has exited.     * </UL>     * @param c the command that triggered this callback     * @param s the screen that contained the command     */    public void commandAction(Command c, Displayable s) {        if (c == exitCommand) {            // Cleanup and notify that the MIDlet has exited            destroyApp(false);            notifyDestroyed();        } else if (c == optionsCommand) {            // Display the options form            display.setCurrent(genOptions());        } else if ((c == okCommand) && (s == optionsForm)) {            // Return to the PhotoFrame, the option values have already            // been saved by the item state listener            display.setCurrent(frame);        } else if (c == List.SELECT_COMMAND) {            // Display the progress screen and            // start the thread to read the images            int i = imageList.getSelectedIndex();            imageName = (String)imageNames.elementAt(i);            display.setCurrent(genProgress(imageList.getString(i)));            thread = new Thread(this);            thread.start();        } else if (c == backCommand) {            // Display the list of images.            display.setCurrent(imageList);        } else if (c == cancelCommand) {            // Signal thread to stop and put an alert.            thread = null;            alert.setString("Loading images cancelled.");            display.setCurrent(alert, imageList);        } else if (c == aboutCommand) {            About.showAbout(display);        }    }    /**     * Listener for changes to options.     * The new values are set in the PhotoFrame.     * @param item - the item whose value has changed.     */    public void itemStateChanged(Item item) {        if (item == borderChoice) {            frame.setStyle(borderChoice.getSelectedIndex());        } else if (item == speedChoice) {            frame.setSpeed(speedChoice.getSelectedIndex());        }    }    /**     * Generate the options form with speed and style choices.     * Speed choices are stop, slow, medium, and fast.     * Style choices for borders are none, plain, fancy.     * @return the generated options Screen     */    private Screen genOptions() {        if (optionsForm == null) {            optionsForm = new Form("Options");            optionsForm.addCommand(okCommand);            optionsForm.setCommandListener(this);            optionsForm.setItemStateListener(this);            speedChoice = new ChoiceGroup("Speed", Choice.EXCLUSIVE);            speedChoice.append("Stop", null);            speedChoice.append("Slow", null);            speedChoice.append("Medium", null);            speedChoice.append("Fast", null);            speedChoice.append("Unlimited", null);            speedChoice.setSelectedIndex(frame.getSpeed(), true);            optionsForm.append(speedChoice);            borderChoice = new ChoiceGroup("Borders", Choice.EXCLUSIVE);            borderChoice.append("None", null);            borderChoice.append("Plain", null);            borderChoice.append("Fancy", null);            borderChoice.setSelectedIndex(frame.getStyle(), true);            optionsForm.append(borderChoice);        }        return optionsForm;    }    /**     * Generate the options form with image title and progress gauge.     * @param name the title of the Image to be loaded.     * @return the generated progress screen     */    private Screen genProgress(String name) {        if (progressForm == null) {            progressForm = new Form(name);            progressForm.addCommand(cancelCommand);            progressForm.setCommandListener(this);            progressGauge = new javax.microedition.lcdui.Gauge("Loading images...", false, 9, 0);            progressForm.append(progressGauge);        } else {            progressGauge.setValue(0);            progressForm.setTitle(name);        }        return progressForm;    }    /**     * Check the attributes in the descriptor that identify     * images and titles and initialize the lists of imageNames     * and imageList.     * <P>     * The attributes are named "PhotoTitle-n" and "PhotoImage-n".     * The value "n" must start at "1" and increment by 1.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品对白一区国产伦| 欧美精品18+| 亚洲欧洲无码一区二区三区| 久久疯狂做爰流白浆xx| 精品国产百合女同互慰| 视频一区中文字幕国产| 风间由美一区二区av101| 国产婷婷色一区二区三区| 国产精品自拍在线| 国产精品传媒入口麻豆| 91福利视频网站| 五月综合激情网| 精品国产乱码久久久久久闺蜜| 国产在线日韩欧美| 亚洲人成影院在线观看| 欧美精品三级在线观看| 粉嫩在线一区二区三区视频| 中文字幕欧美国产| 欧美午夜不卡在线观看免费| 国产精品一区二区三区网站| 亚洲视频资源在线| 日韩一级大片在线观看| 91官网在线观看| 国产又黄又大久久| 亚洲综合在线观看视频| 久久久久久久久伊人| 欧美系列在线观看| 成人av在线资源| 日韩电影一二三区| 亚洲已满18点击进入久久| 国产精品三级av| 2014亚洲片线观看视频免费| 国产精品一区不卡| 麻豆成人久久精品二区三区小说| 欧美成人video| 色婷婷一区二区| 亚洲成人高清在线| 专区另类欧美日韩| 丝袜美腿一区二区三区| 狠狠v欧美v日韩v亚洲ⅴ| 国产成人精品一区二区三区网站观看| 91香蕉视频在线| 日韩精品一区二区在线观看| k8久久久一区二区三区| 国产在线国偷精品产拍免费yy| 91国产成人在线| 久久女同精品一区二区| 夜色激情一区二区| 久久精品国产秦先生| 97aⅴ精品视频一二三区| 色婷婷综合久久久| 久久精品免费在线观看| 日本欧美肥老太交大片| 国产黄色91视频| 日韩一级片网站| 午夜电影久久久| 国产馆精品极品| 欧美性大战久久| 精品国产乱码久久久久久久| 亚洲综合色婷婷| 国产成人三级在线观看| 欧美一区二区三区影视| 中文字幕视频一区二区三区久| 久久精品国产在热久久| 色婷婷综合激情| 亚洲国产日韩综合久久精品| 欧美日韩不卡一区二区| 国产欧美一区二区精品忘忧草 | 亚洲丝袜自拍清纯另类| 国产一区二区不卡| 精品国产a毛片| 国产精品自拍网站| 国产精品婷婷午夜在线观看| 国产传媒久久文化传媒| 久久久久久久久久久99999| 狠狠色丁香久久婷婷综| 久久久久高清精品| 高清不卡一区二区| 亚洲国产精品成人综合色在线婷婷| 国产在线精品不卡| 欧美激情中文字幕一区二区| av激情亚洲男人天堂| 樱花影视一区二区| 欧美日韩国产电影| 国产精品77777| 五月婷婷久久丁香| 久久精品欧美一区二区三区不卡| 欧美高清hd18日本| 精品一区二区综合| 亚洲欧美日韩久久| 日韩欧美的一区二区| 99视频精品全部免费在线| 午夜精品一区在线观看| 国产精品久久久久毛片软件| 欧美日韩aaa| 97精品久久久午夜一区二区三区 | 亚洲少妇屁股交4| 欧美成人精品高清在线播放| 成人美女在线观看| 精品一区二区三区在线观看| 五月婷婷色综合| 日韩码欧中文字| 中文字幕免费在线观看视频一区| 91精品国产入口| 亚洲日本在线天堂| 日韩欧美国产高清| 精品少妇一区二区三区在线视频| 欧美午夜精品电影| 欧美亚洲动漫精品| 欧美自拍偷拍一区| 欧美三级欧美一级| 欧美网站一区二区| 精品少妇一区二区三区免费观看| 欧美一区二区视频在线观看2022| 色婷婷精品久久二区二区蜜臂av | 国产精品国产自产拍高清av王其| 国产欧美日韩另类一区| 久久久九九九九| 亚洲欧洲精品一区二区三区 | 精品久久久网站| 欧美国产一区二区在线观看| 国产精品嫩草影院com| 亚洲免费av网站| 久久99精品久久只有精品| 国产精品一级在线| 99在线热播精品免费| 欧美日韩国产色站一区二区三区| 欧美tk丨vk视频| 亚洲综合色噜噜狠狠| 国产在线国偷精品免费看| 91在线视频播放地址| 777色狠狠一区二区三区| www国产精品av| 一卡二卡三卡日韩欧美| 久热成人在线视频| 日本电影欧美片| 中文字幕 久热精品 视频在线| 亚洲乱码国产乱码精品精的特点| 美女被吸乳得到大胸91| av中文字幕不卡| 国产清纯在线一区二区www| 五月婷婷色综合| 日本乱人伦一区| 亚洲美女一区二区三区| 成人亚洲一区二区一| 欧美va亚洲va国产综合| 美女网站在线免费欧美精品| 4438x亚洲最大成人网| 亚洲综合免费观看高清在线观看| 国产成人无遮挡在线视频| 精品国产乱码久久久久久牛牛| 午夜精品一区二区三区三上悠亚| 欧美天堂一区二区三区| 亚洲欧美色综合| 色先锋资源久久综合| 亚洲色图19p| 欧美少妇一区二区| 日韩av一区二| 日韩免费电影一区| 国产精品一区二区视频| 中文字幕欧美一| 在线看日本不卡| 免费观看日韩av| 国产亚洲精久久久久久| 97久久精品人人爽人人爽蜜臀| 亚洲美女在线国产| 日韩午夜激情视频| 成人永久免费视频| 日韩精品视频网| 国产情人综合久久777777| 色综合咪咪久久| 美女mm1313爽爽久久久蜜臀| 久久久精品免费免费| 欧洲一区二区av| 成人手机电影网| 国产一区二区三区四区在线观看 | 久久亚洲综合色| 欧美日韩一区二区三区不卡| 成人免费不卡视频| 国产在线观看一区二区| 男男成人高潮片免费网站| 亚洲猫色日本管| 亚洲天堂久久久久久久| 国产精品国产a级| 综合久久一区二区三区| 国产免费久久精品| 国产日韩综合av| 亚洲猫色日本管| 日韩国产精品久久久久久亚洲| 国产亚洲精品资源在线26u| 成人午夜电影网站| 欧美丝袜丝交足nylons图片| 欧美一级夜夜爽| 精品捆绑美女sm三区| 日韩影院免费视频| 午夜国产精品一区| 久久精工是国产品牌吗| 99精品国产视频| 日韩欧美一级精品久久| 欧美国产1区2区|