0
votes
1answer
22 views

Adding ColorPickerPreference Library when it's not a preference

I'm trying to add a ColorPicker to my app. I see a lot a of ColorPickers (the one frome the API'S Samples, the one from Cyanogen, the AmbilWarna library, the HoloColorPicker, and the ...
2
votes
1answer
253 views

RGB-only JColorChooser (Java 7)

I'm trying to create a JFrame including a JPanel containing only the stuff necessary to choose a RGB color. I've been messing around with JColorChooser, AbstractColorChooserPanel and ColorModel, ...
1
vote
2answers
79 views

How to continuously update scene color while adjusting JColorChooser?

I am in the process of translating a python/Qt GUI application into Java/Swing. The original application beautifully updates the scene color continuously as the user drags the sliders in a ...
0
votes
1answer
238 views

Using android-color-picker in a fragment?

I am fairly new to android development and want to use the Android-Color_picker "AmbilWarna" inside a fragment. I am getting the error: The constructor AmbilWarnaDialog(HomeFragment, int, new ...
-2
votes
1answer
287 views

color picker in android?

how to use color picker in android. I try following code public class FontManager { // This function enumerates all fonts on Android system and returns the HashMap with the font // absolute file ...
1
vote
1answer
219 views

Change Single Color of Downloaded Images

I'm currently trying to add a color picker to my application which downloads a zip file of images, extracts them and installs them to the user's SystemUI. I've looked for quite a while to try and ...
3
votes
1answer
2k views

JColorChooser front end changing

I'm trying to understand why JColorChooser changes in appearance when my application is run from the IDE (Eclipse) or from a Jar file (created by an ant script). This is the panel when run from the ...
2
votes
1answer
342 views

Retrieving color information from ColorPickerDialog.java

I'm currently using the ColorPickerDialog.java provided by Google. I can get it to load properly, and I can successfully choose a color, press the middle circle to confirm, and it will store it's ...
2
votes
3answers
272 views

Gif safe Color chooser

Is there a java library to choose Gif safe colors or can we do this by making a custom colorchooser in java itself ? If so how can it be done ?
3
votes
2answers
1k views

Find Specific Color in an Image

I have an image where I want to find a specific location (coordinate) based on its color. For example I want to find coordinates of edges of this Black box. How can i detect Black color in this ...
0
votes
1answer
358 views

How to make a color picker from image?

How can I make a color picker, which gets a value of images pixel and refreshes any time I click on different pixel, shows it? It must be done in java.
3
votes
1answer
336 views

Pick recently selected colors in java

I would like to add a color picker dialog to my app that remembers recently selected colors, so that it's easy to pick the exact same color as before, instead of getting several slight variations of a ...