- 浏览: 11996 次
- 性别:
- 来自: 北京
最近访客 更多访客>>
最新评论
-
javastder:
42 Comments: guillechan said.. ...
HOWTO Build, Sign and Install MIDlets
文章列表
http://wiki.forum.nokia.com/index.php/How_to_make_Video_splash
In those a few lines you will find a code of how to create easy startup splash screen that can play video files of any format (GIF,AVI,mpg,3gpp,real etc..)
video splash class
package GALAXY.videosplash;
import java.io.*;
...
How to sign Midlet with self issued certificate
1- Generate a keystore and key pair
C:\JDKHOME\bin>keytool -genkey -alias {my alias} -keyalg RSA -validity 365 -keystore c:\keystorename.ks
Enter keystore password: password What is your first and last name? [Unknown]: My Name What is the na ...
http://discussion.forum.nokia.com/forum/showthread.php?t=83491
http://developer.sonyericsson.com/community/thread/49164
http://developers.sun.com/mobility/midp/chapters/j2meknudsen/Chap12.pdf
http://developers.sun.com/mobility/midp/articles/https/
http://developers.sun.com/mobility/midp/a ...
http://browndrf.blogspot.com/2006/06/build-and-install-singed-midlet.html
I’m aware that this is a lengthy process and involves several delicate steps. I wish I knew an easier method!! I have only tested this with one handset (nokia 6682). If you have a different handset things can be slightly di ...
from http://m-shaheen.blogspot.com/2009/07/1.html
MIDlet Signing process steps can be summarized into :
1. Generate public/private key pairs.
2. Generate Certificate Signing Request (CSR) and submit it to CA .
I wrote a couple of times about how problematic System.gc is for mobile developers, I'd like to drive that point further today.LWUIT started making heavy use of WeakReference's
in the past few months, which is something I've been using for a while
now on SE but was reluctant to go for in ME. Not an ...
转载至: http://blog.csdn.net/yili_xie/archive/2009/11/12/4803527.aspx
Android
Display System --- Surface
Flinger
SurfaceFlinger
是Android multimedia
的一个部分,在Android
的实现中它是一个service
,提供系统
范围内的surface composer
功能,它能够将各种应用
程序的2D
、3D surface
进行组合。在具体讲SurfaceFli ...