0

当用户请求一些 http 连接时,我想显示一个加载屏幕。我从 stackoverflow 和 google 获得了一些很好的示例,但是它们都使用单独的屏幕显示加载屏幕。我想在用户请求的同一屏幕中显示它http 连接。如果有人有想法,请分享给我,在此先感谢。

4

2 回答 2

1

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

于 2011-03-12T15:52:44.487 回答
0

如果您为 OS v6.0 开发,那么 RIM 提供了用于进度指示的 api http://docs.blackberry.com/en/developers/deliverables/17971/Indicate_activity_1210002_11.jsp

对于低于 OS v6.0,下面的代码可能有助于 uie ProgressAnimationField,它是一个自定义字段,它采用位图微调器/加载器 img、它的帧数和样式。

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;
        }
    }
}
于 2011-03-13T07:21:44.337 回答