Package com.sun.dtv.lwuit

Examples of com.sun.dtv.lwuit.List.addItem()


        final List list = new List();
        String[] arquivos = File.getAllFilesWithExtensions("/home/mos/xlets/", new String[] {"jar"});
        if (arquivos != null){
            for (int i=0;i<arquivos.length;i++)
                list.addItem(arquivos[i]);
        }
        list.setY(15);
        list.setHeight(10);
        Style stylebotao = new Style();
        stylebotao.setBgColor(0x000000, true);
View Full Code Here


        final List list = new List();
        String[] arquivos = File.getAllFilesWithExtensions("/home/mos/zvideos/", new String[] {"avi","mpg","ts"});
        if (arquivos != null){
            for (int i=0;i<arquivos.length;i++){
                //final Button arq = new Button(arquivos[i]);
                list.addItem(arquivos[i]);
            }
        }
        list.setY(15);
        list.setHeight(10);
        list.setHandlesInput(true);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.