[android-developers] Re: Hmm... at last ADC2 is out of our way ... tell about your app and experience

2009-09-02 Thread pmilosev
Hi everyone Social: A-GLOBAL-MIND http://a-global-mind.blogspot.com/ Description: "Q/A social network" By: AGM Team Feedback: Many sleepless nights --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Develo

[android-developers] Re: Screen not updating when calling ResourceCursorTreeAdapter.notifyDataSetChanged()

2009-08-05 Thread pmilosev
as it should (like in my case above) If you are trying to load data in bg thread here is a usefull howto: http://developer.android.com/guide/appendix/faq/commontasks.html#threading regards On Aug 5, 6:16 pm, pmilosev wrote: > I have a similar problem: > > I have BaseAdapter and a provi

[android-developers] Re: Screen not updating when calling ResourceCursorTreeAdapter.notifyDataSetChanged()

2009-08-05 Thread pmilosev
I have a similar problem: I have BaseAdapter and a provider class that loads in background. When loading is finished I call notifyDatasetChanged/ notifyDataSetInvalidate but the view does not update. I guess there is some bug in the SDK, but the strange thing is there is nothing similar reported

[android-developers] rating bar padding problem

2009-03-29 Thread pmilosev
Hi I have noticed that if I add some padding to the rating bar (small) it will shift the bar but the star on the right will be truncated (e.g. if I add 5px padding from left or right the right most star will be missing 5 pixels) Is there something I am missing, or is this a SDK bug ? regards --

[android-developers] Re: problems when setting / removing color filter to image views

2009-01-28 Thread pmilosev
> Drawable d1 = getResources().getDrawable(R.drawable.my_image); > Drawable d2 = getResources().getDrawable(R.drawable.my_image); > The two drawables are different objects but they both use the same > "constant state" (it's the actual name of the implementation) which > contains, among other thin

[android-developers] problems when setting / removing color filter to image views

2009-01-28 Thread pmilosev
Hi I have several state-full custom buttons, each composed of three parts (image views): back, middle, front. On state change color filter (tint) is applied / removed to the middle and front part. On focus change color filter is applied / removed to the back part of the button (the image on the b

[android-developers] how to get the list of notification

2009-01-21 Thread pmilosev
Hi In my project I need to have a list of all notification (replacing / duplicating the status bar). >From what I have found so far (from the android source) the notification icon is directly pushed on the status bar by the notification manager service (status bar is part of the system). Is ther