just wanted to add this Color Picker ( http://code.google.com/p/devmil-android-color-picker/source/browse/ ) to my app and make it appear when a preference is clicked, but my problem is how to add it? Where should I copy that folders? I have this, so what should I put inside?
Preference.OnPreferenceClickListener colordialog = new Preference.OnPreferenceClickListener(){
public Boolean OnPreferenceClick(Preference preference){
if (preference.getKey().equals("color")){
}
return false;}
};
1 Answer