如何创建一个具有鼠标光标的移动应用程序,该鼠标光标通过 j2me 中的按钮在屏幕上移动?

发布于 2024-10-09 15:54:59 字数 46 浏览 2 评论 0原文

我想在我的 j2me 应用程序中使用光标,因为它被不同的网页浏览器使用 手机

i want to use a cursor in my j2me application as it is being used by different web browse in
cell phones

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

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

发布评论

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

评论(1

倾`听者〃 2024-10-16 15:54:59

您可以拍摄指针的图像,并使用指针按下和指针释放方法,该方法将为您提供指针具有指针的坐标。要使用此指针按下方法,您必须将 Game canvas 或 Canvas 类扩展到您的类中。

example:--

public class  Example extends GameCanvas {

public Example()
    {
        super(false);
    }
 public void keyPressed(int keycode)
    {
    }
protected void pointerPressed(int X,int Y) 
   {
   }
protected void pointerDrageed(int X,int Y) 
   {
   }
protected void pointerReleased(int X,int Y) 
   {
   }

通过使用上述方法,我认为您可以解决您的问题。

you can take an image of pointer and the use pointer pressed and pointer released method which will give u the cordinates which pointer had pointer.For using this pointer presse method you have to extend Game canvas or Canvas class into your class.

example:--

public class  Example extends GameCanvas {

public Example()
    {
        super(false);
    }
 public void keyPressed(int keycode)
    {
    }
protected void pointerPressed(int X,int Y) 
   {
   }
protected void pointerDrageed(int X,int Y) 
   {
   }
protected void pointerReleased(int X,int Y) 
   {
   }

By using above methods i think you can get the solution of your problem.

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