0

我需要使用对话框。出现 2-3 秒后自动关闭。我应该在 BlackBerry 上使用哪个对象?

4

2 回答 2

2

你也可以使用

Status.show(String message) 

显示状态屏幕两秒钟。

或者

Status.show(String message, Bitmap bitmap, int time) 

在指定时间显示带有指定图标的状态屏幕。

于 2010-12-04T07:39:17.337 回答
1

创建一个扩展 PopupScreen 的类并使用TimerTask自动关闭它。所以你的构造函数中的代码看起来像这样:

    Timer timer = new Timer();
    timer.schedule(new TimerTask(){

        public void run()
        {
            if(TestScreen.this.isDisplayed())
            {
                synchronized (Application.getEventLock())
                {
                    TestScreen.this.close();
                }
            }
        }

    }, WAIT_TIME_IN_MILLISECONDS);
于 2010-12-03T18:32:45.380 回答