Package net.rim.device.api.ui.component.progressindicator

Examples of net.rim.device.api.ui.component.progressindicator.ActivityIndicatorModel


     */
    public static ActivityIndicatorView createActivityIndicator(
            final long viewStyle, final Bitmap bitmap, final int numFrames,
            final long animationFieldStyle) {
        final ActivityIndicatorView view = new ActivityIndicatorView(viewStyle);
        final ActivityIndicatorModel model = new ActivityIndicatorModel();

        view.setModel(model);

        view.createActivityImageField(bitmap, numFrames, animationFieldStyle);

View Full Code Here


    public static ActivityIndicatorView createActivityIndicator(
            final Manager delegate, final long viewStyle, final Bitmap bitmap,
            final int numFrames, final long animationFieldStyle) {
        final ActivityIndicatorView view =
                new ActivityIndicatorView(viewStyle, delegate);
        final ActivityIndicatorModel model = new ActivityIndicatorModel();

        view.setModel(model);

        view.createActivityImageField(bitmap, numFrames, animationFieldStyle);
View Full Code Here

TOP

Related Classes of net.rim.device.api.ui.component.progressindicator.ActivityIndicatorModel

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.