
Blackberry
wang_shaner
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
blackberry nextFocus()
处理焦点 当用户滚动滑轮时,为了指定field 该如何得到焦点,覆写nextFocus()方法。direction 参数 描述了焦点移动的方向(一般来说,当滑轮向下滚动,焦点向下并且向右方向。当滑轮向上 滚动,焦点向上并且向左)。 protected int nextFocus(int direction, boolean alt) { int index = this.getFieldWithFocusIndex(); if (alt) { if (directi原创 2010-07-01 21:25:00 · 829 阅读 · 1 评论 -
Blackberry MDS 在 Windows下无法启动
原文地址: http://www.blogjava.net/lincode/archive/2010/05/27/289889.html Blackberry MDS 是 Blackberry 模拟器 访问网络资源的服务器。 Blackberry java development environnement JDE 的安装包中已经包含了MDS。 但是有时候MDS无法启动。点击 开始 -> 程序 -> Research In Motion -> blackberry JDE 4.5 -> MDS-C转载 2010-11-23 14:28:00 · 831 阅读 · 0 评论 -
Module 'XXXXX' has verification error
When developing Java applications for the BlackBerry smartphone, you may encounter any of the following verification errors or errors similar to the following:Verification Error 3141Module 'MyMIDlet' has verification error () at offset .Error starting M转载 2011-01-17 09:47:00 · 2013 阅读 · 0 评论 -
屏蔽倒屏
BlackBerry smartphones with accelerometer support, such as the touch screen BlackBerry® Storm™ Series, are capable of changing the display orientation between portrait and landscape mode, depending on how the BlackBerry smartphone is held.It may b转载 2011-03-21 17:13:00 · 709 阅读 · 0 评论 -
BlackBerry Unable to close camera using EventInjector for touch screen
http://supportforums.blackberry.com/t5/Java-Development/Unable-to-close-camera-using-EventInjector-for-touch-screen/m-p/785247#M143879So I believe I have found a way to make this work consistently. My issue was not the permissions, as all along I was te转载 2011-04-11 12:49:00 · 938 阅读 · 0 评论 -
permission
http://supportforums.blackberry.com/t5/Java-Development/Setting-permissions-in-listeners/m-p/591562Options<br />09-13-201004:26 AM<br />Problem solved but I consider it a bug of some sort.<br />If I take the class for setting permissions that I have in the原创 2011-04-13 14:24:00 · 527 阅读 · 0 评论 -
检测何时在 BlackBerry 设备文件系统中添加或删除图像
http://docs.blackberry.com/tr-tr/developers/deliverables/16464/Detect_when_img_is_added_or_removed_file_sy_zh-cn_1054347_11.jsp导入所需的类。 import net.rim.device.api.system.Application; import net.rim.device.api.io.file.FileSystemJournalListener;实施 FileSystemJ转载 2011-04-12 18:10:00 · 666 阅读 · 0 评论 -
黑莓反射迂回
I've experimented with creating 3 COD files. 1. The main.cod which contains the common code 2. The interface.cod which contains interfa转载 2011-07-29 17:30:22 · 666 阅读 · 0 评论 -
java时间格式format
Date d = new Date(); 源码也是取系统时间 /** * Initializes this {@code Date} instance to the current time. */ public Date() { this(System.currentTimeMillis()); } 转换时月份和分原创 2012-08-16 15:47:03 · 727 阅读 · 0 评论