适用于 BlackBerry 的 UINavigationControl

发布于 2024-12-10 00:20:11 字数 136 浏览 4 评论 0原文

我正在为 Blackberry OS 5.0 及更高版本开发应用程序。

在 iPhone 上,UINavigationControl 是一个非常酷的 UI 组件。如何为 BlackBerry 应用程序实现相同的控件?

I am developing an application for Blackberry OS 5.0 and later.

On the iPhone, UINavigationControl is a really cool UI component. How can I implement the same control for a BlackBerry application?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

§普罗旺斯的薰衣草 2024-12-17 00:20:11

您需要覆盖该字段的 touchEvent ,下面是示例,这里我覆盖 toucevent 以使地图导航在 touchevent 上,当用户在触摸屏上移动手指时,地图开始朝该方向滚动,类似地,您可以对任何场地 :

map = new MapField(){

        public boolean touchEvent(TouchEvent message){
            int x=message.getX(1);
            int y=message.getY(1);
            if(message.getEvent()==TouchEvent.MOVE){


                XYPoint _xyIn = new XYPoint();
                XYPoint _xyOut = new XYPoint();

                _xyIn.x=x;
                _xyIn.y = y;
                convertFieldToWorld(_xyIn,_xyOut);

                map.moveTo(_xyOut.y,_xyOut.x);
                return true;
            }else if(message.getEvent()==TouchEvent.CLICK){
                //Do what you want when a user clicks on the screen
            }
            return false;

        }
    };

You need to override the touchEvent of the field , below is the example,Here i m overriding the toucevent to make the map navigation on touchevent when a user moves his finger on touchscreen the map starts scrollin in that direction similarly you can do the same for any field :

map = new MapField(){

        public boolean touchEvent(TouchEvent message){
            int x=message.getX(1);
            int y=message.getY(1);
            if(message.getEvent()==TouchEvent.MOVE){


                XYPoint _xyIn = new XYPoint();
                XYPoint _xyOut = new XYPoint();

                _xyIn.x=x;
                _xyIn.y = y;
                convertFieldToWorld(_xyIn,_xyOut);

                map.moveTo(_xyOut.y,_xyOut.x);
                return true;
            }else if(message.getEvent()==TouchEvent.CLICK){
                //Do what you want when a user clicks on the screen
            }
            return false;

        }
    };
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文