Package net.rim.device.api.ui.container

Examples of net.rim.device.api.ui.container.FlowFieldManager


        // Set up the components that allow the user to choose
        // an animation and then run it.
        final VerticalFieldManager vManager =
                new VerticalFieldManager(Manager.VERTICAL_SCROLL);
        final Manager fManager = new FlowFieldManager(Manager.VERTICAL_SCROLL);
        setChoiceField();
        fManager.add(_options);
        setButtonField();
        fManager.add(_playButton);

        vManager.add(fManager);
        add(vManager);

        // First animation is set to the bouncing ball animation by default.
View Full Code Here


    /**
     * Initialize the SVG Map and the remaining screen components.
     */
    private void initializeUI() {
        // Initialize a FlowFieldManager to have the checkboxes layed out.
        _checkboxManager = new FlowFieldManager(Manager.HORIZONTAL_SCROLL);

        // Add the SVG Map to a custom manager to handle its behaviour as a
        // custom
        // togglable field.
        _mapManager = new SVGMapManager();
View Full Code Here

TOP

Related Classes of net.rim.device.api.ui.container.FlowFieldManager

Copyright © 2018 www.massapicom. 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.