在ui屏幕中加载指示器而不使用单独的屏幕或弹出窗口

时间:2011-03-12 05:18:35

标签: blackberry blackberry-eclipse-plugin blackberry-jde

我希望在用户请求一些http连接时显示一个lodaing屏幕。我从stackoverflow和google获得了一些好的样本,但是所有这些都使用单独的屏幕显示加载屏幕。我想在同一个屏幕中显示它用户对http连接的请求。 如果有任何想法请与我分享,提前致谢。

2 个答案:

答案 0 :(得分:1)

我通常在MainScreen的状态部分使用GaugeField。使用setStatus(Field字段)方法设置它。

答案 1 :(得分:0)

如果你正在为OS v6.0开发,那么RIM已经为进度指示提供了api http://docs.blackberry.com/en/developers/deliverables/17971/Indicate_activity_1210002_11.jsp

对于下面的操作系统v6.0,下面的代码可能会对你有帮助.PressAnimationField它是一个自定义字段,它取位图spinner / loader img,它的num帧和样式。

import net.rim.device.api.system.*;
import net.rim.device.api.ui.*;

/**
 * Custom class for spinner animation
 */
public class ProgressAnimationField extends Field implements Runnable 
{
    private Bitmap _bitmap;
    private int _numFrames;
    private int _frameWidth;
    private int _frameHeight;

    private int _currentFrame;
    private int _timerID = -1;

    private Application _application;
    private boolean _visible;

    public ProgressAnimationField( Bitmap bitmap, int numFrames, long style ) 
    {
        super( style | Field.NON_FOCUSABLE );
        _bitmap = bitmap;
        _numFrames = numFrames;
        _frameWidth = _bitmap.getWidth() / _numFrames;
        _frameHeight = _bitmap.getHeight();

        _application = Application.getApplication();
    }

    public void run() 
    {
        if( _visible ) {
            invalidate();
        }
    }

    protected void layout( int width, int height ) 
    {
        setExtent( _frameWidth, _frameHeight );
    }

    protected void paint( Graphics g ) 
    {
        g.drawBitmap( 0, 0, _frameWidth, _frameHeight, _bitmap, _frameWidth * _currentFrame, 0 );
        _currentFrame++;
        if( _currentFrame >= _numFrames ) {
            _currentFrame = 0;
        }
    }

    protected void onDisplay() 
    {
        super.onDisplay();
        _visible = true;
        if( _timerID == -1 ) {
            _timerID = _application.invokeLater( this, 200, true ); 
        } 
    }

    protected void onUndisplay() 
    {
        super.onUndisplay();
        _visible = false;
        if( _timerID != -1 ) {
            _application.cancelInvokeLater( _timerID );
            _timerID = -1;
        }
    }
}