MudPHP制作中。。。入口地址:fy3.tiandiyoyo.com

[转]How to – Create a custom layout manager for a screen

3826 0 5.0

Procedure You can create your own custom layout manager by extending the net.rim.device.api.ui.Manager class and customizing it to fit your needs. Custom layout managers enable you to customize the placement of fields on the screen and customize navi...

自定义Field,paint background后光标消失的另类解决方法

5471 0 5.0

估计Field下应该有draw cursor的方法,不过此处采取另一种更为简单的方法。 将需要paint background的Field设置在manager下,在manager下做paint background,这样也能达到预期效果。 VerticalFieldManager v2 = ...

自定义RichTextField的drawText方法如何根据文字大小换行

4404 0 5.0

可能标题很模糊,唉,我也说不清怎么表达。如果光是继承RichTextField,直接setText(str)就可以达到自动换行的效果。 但是我这里要用到drawText的方法,因为我需要我的文字显示在指定的x,y点上...

去除黑莓默认的菜单full menu

3494 0 5.0

当你在屏幕内按下轨迹球的时候,默认会调用黑莓默认的菜单,用以下代码除去这个默认菜单。 protected boolean navigationClick(int status, int time) { return true; } 文章评...

[转]j2me如何上传文件

3432 0 5.0

在nokia的论坛里看到,感觉很详细,在此分享。 Here is a J2ME class to handle file uploads via HTTP POST Multipart Requests. Source Code: HttpMultipartRequest class <span style="color: #000000; font-weight: bold;">imp...

[转]Implement basic HTTP authentication

3508 0 5.0

Description An application may need to connect to a resource that is protected using basic HTTP authentication. The following code sample illustrates how to authenticate using basic HTTP authentication from within a BlackBerry smartphone application....

英文100句打字练习1.31 for blackberry

10009 10 5.0

英文100句打字练习是一款测试打字速度兼学习英文的原创黑莓小软件。软件内录入了目前网络上流行的包含7000个CET4单词的100句英文例句,给各位想学习英文又没有大量空余时间的莓友一...

如何将黑莓程序配置文件导出到INI中

4408 0 5.0

由于BBextra的选项越来越多,用户提出最好能实现配置文件导入导出功能,这样今后刷机之后,能通过导入文件来进行配置,省却了一步一步再手动点选选项来禁用或启用某功能了。 BB上文...

4.5OS和4.5OS+的应用程序logo问题

7206 4 5.0

先看下4.7+的OS图标,是标准80X80格式,按RIM提供的默认themes来看,基本上logo周围一圈留有空间,因此我们制作软件logo的时候也将周围一圈留下一定的量。 再看4.5的图标,和上图采用的是同...

触摸机型TouchEvent的调用

3699 0 5.0

原以为是用fieldchangelistener实现的,草草地涂了些代码,发现并无反应,甚至当添加focusable的时候,都不成功。于是怀疑是方法用错了,照理touch应该是另一种方法,果然,在API上search touch,...