Re: : [android-developers] Re: Color Picker Preference

2012-07-06 Thread Mark Murphy
On Fri, Jul 6, 2012 at 5:14 AM, Kostya Vasilyev wrote: > There is a nice color picker on Google Code called AmbilWarna. > > Converting it to a Dialog preference is trivial, start by subclassing :) I also put together a ColorPreference, based on a ColorMixer widget, some time ago: https://github.

Re:: [android-developers] Re: Color Picker Preference

2012-07-06 Thread Kostya Vasilyev
There is a nice color picker on Google Code called AmbilWarna. Converting it to a Dialog preference is trivial, start by subclassing :) 06.07.2012 13:04 пользователь "Alfa" <672008...@student.uksw.edu> написал: > in dont realy get it. can u explaint more? or a litle sample code maybe. > because i

[android-developers] Re: Color Picker Preference

2012-07-06 Thread Alfa
in dont realy get it. can u explaint more? or a litle sample code maybe. because i need color picker. thanks. On Friday, March 12, 2010 11:39:16 PM UTC+7, Yougli wrote: > > Hi, > > I've been looking for a way to add a color picker to my application's > preferences. > > I've found the ColorPickerD

[android-developers] Re: Color Picker Preference

2011-03-18 Thread Boozel
Hi can you please tell me how to "register setOnPreferenceClickListener to a function" thank you this is the code from my settings.xml file http://schemas.android.com/apk/res/android"; android:title="@string/tw_settings" android:key="twSettings"> -- You received

[android-developers] Re: Color Picker Preference

2010-04-13 Thread gcstang
Thank you, On Apr 13, 2:13 pm, Thomas Gonnin wrote: > Hi, > > First, your preference activity should implement > ColorPickerDialog.OnColorChangedListener > Then add a PreferenceScreen and register setOnPreferenceClickListener to a > function where you will do a new ColorPickerDialog().show(). > F

Re: [android-developers] Re: Color Picker Preference

2010-04-13 Thread Thomas Gonnin
Hi, First, your preference activity should implement ColorPickerDialog.OnColorChangedListener Then add a PreferenceScreen and register setOnPreferenceClickListener to a function where you will do a new ColorPickerDialog().show(). Finally, implement your colorChanged function where you will use you

[android-developers] Re: Color Picker Preference

2010-04-13 Thread gcstang
How did you use it? I'm faced with the same issue but not sure how to open it and save to a preference key. Did you use another preference to open it or something? On Mar 14, 11:56 am, Yougli wrote: > I reply to myself :) > > I found out that I could actually use the ColorPickerDialog as it is

[android-developers] Re: Color Picker Preference

2010-03-14 Thread Yougli
I reply to myself :) I found out that I could actually use the ColorPickerDialog as it is in my PreferenceActivity... Don't know why I couldn't use it before. Sorry about that. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to th