I want to use JAVA SE Color class in my Blackberry application.
From java.awt.Color package
I have a project on image effect and control(hue,contrast).I have seen android code in that they use Color.colorToHSV().
I saw the same for Blackberry Color class but it has no methods.
So thats why i need JAVA SE color class so that i can use these methods,….
Can I use JAVA SE Color class?
What should I do to do so?
There is no Java SE Color class support in BlackBerry SDK.
Instead of this class there is
net.rim.device.api.ui.Colorclass. It is less functional than Java SEjava.awt.Colorclass.But there’s a workaround.
When you have installed Java SE SDK on your computer, then in that folder where Java SE SDK installed there is
src.zipfile.This file contains source code for all standard Java SE classes, including
java.awt.Colorclass. Unpack thissrc.zipfile, findjava/awt/Color.javaand inspect it, how does it work.And implement this functionality for your BB application.