- 浏览: 809667 次
- 性别:
- 来自: 广州
最新评论
-
mixture:
语句int num1, num2;的频度为1;语句i=0;的频 ...
算法时间复杂度的计算 [整理] -
zxjlwt:
学习了。http://surenpi.com
[问题解决]Error: ShouldNotReachHere() [整理] -
Animal:
谢谢 楼主 好东西
算法时间复杂度的计算 [整理] -
univasity:
gaidandan 写道缓存失败,,模拟器上可以缓存,同样代码 ...
[开发总结]WebView使用中遇到的一些问题&解决 -
blucelee2:
那么麻烦干吗,而且这种方法会导致,当拉太小的时候样式会丢掉,整 ...
[SWT]SashForm中固定单侧大小(&实现面板隐藏)
文章列表
原文:http://theoreticlabs.com/dev/api/jsr-135/jsr135_rp.html
Multimedia Security
Addendum to the Mobile Media API (JSR135) version 1.2
Version 1.2 1 March 2006
Preface
This document, Multimedia Security
is an addendum to the Mobile Media API (JSR-135) version 1.2 for the Java TM 2 Platfo ...
原文连接:
http://www.kalmeo.org/projects/kuix/docs/xml_i18n
译文:
XML可以通过多种方式是屏幕更具属性显示动态的内容。
我们将为你简单地介绍这些属性并将为你演示一个关于怎样国际化动态内容的典型例子。
基础
国际化属性
在你的XML文件中,每处%I18N_KEY%
形式的地方都会被替换为他们的本土化相应的价值位于/i18n/message.properties或/i18n/message.XX.properties文件中,XX对应于所选择的语言。
数据绑定属性
${my ...
1.
an optional package is a set of programming interfaces that can be added to a J2ME profile or configuration to provide a category of functionality that some users of that configuration or profile will need but not all.
2.
Note that almost every method in the FileConnection class has the potenti ...
- 2009-02-19 09:22
- 浏览 937
- 评论(0)
最近由于工作需要,需要对背景灯进行操作。对于背景灯设置API说得并不清晰而且缺少例子,网上能找到的资料也不多,这里放上一些最近搜集到的,以作备忘。
CS000957 - Flashing the backlight
From Forum Nokia Wiki
ID
CS000957
Creation date
May 14, 2008
Platform
S60 3rd Edition, MR
S60 3rd Edition, FP1
Tested on devices
Nokia E61i
No ...
收集了一下图像缩放的函数,可能实现的方式很多,感觉这几个不错的,分享下
说明:以下函数都是基于MIDP2.0的,缩放后保留透明色。
public static Image resizeImage(Image src, int destW, int destH) {
int srcW = src.getWidth();
int srcH = src.getHeight();
// create pixel arrays
int[] destPixels = new int[destW * destH]; // array to hold destinat ...