上星期从SRL那边把他们的邮件服务器搬到自己机房,已经很久没碰linux系统的东西了,不少命令已经生疏了。 蛋疼的默认设置总是会过一段时间屏幕黑屏,开启ssh后,putty过去setterm -blank 0竟...
在黑莓的通知栏(状态栏)里显示图标和数字
通知栏也就是通常我们收到新短信,新邮件以及未接电话,桌面上会产生一个小图标,并记录未读消息个数,未接电话个数的那个区域。 近期在做一款《莓通知》的软件,利用自动发送指定...
获取设备内安装的程序清单
RIM API里提供了CodeModuleManager,通过CodeModuleManager我们可以取得安装程序的作者,大小,名称,版本号等等信息。 int apps[] = CodeModuleManager.getModuleHandles(); for (int i = 0; i < handles.length; i++) { ...
[转]How to – Create a custom layout manager for a screen
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后光标消失的另类解决方法
估计Field下应该有draw cursor的方法,不过此处采取另一种更为简单的方法。 将需要paint background的Field设置在manager下,在manager下做paint background,这样也能达到预期效果。 VerticalFieldManager v2 = ...
自定义RichTextField的drawText方法如何根据文字大小换行
可能标题很模糊,唉,我也说不清怎么表达。如果光是继承RichTextField,直接setText(str)就可以达到自动换行的效果。 但是我这里要用到drawText的方法,因为我需要我的文字显示在指定的x,y点上...
去除黑莓默认的菜单full menu
当你在屏幕内按下轨迹球的时候,默认会调用黑莓默认的菜单,用以下代码除去这个默认菜单。 protected boolean navigationClick(int status, int time) { return true; } 文章评...
[转]j2me如何上传文件
在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
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
英文100句打字练习是一款测试打字速度兼学习英文的原创黑莓小软件。软件内录入了目前网络上流行的包含7000个CET4单词的100句英文例句,给各位想学习英文又没有大量空余时间的莓友一...