Re: [android-developers] Questions about Custom (Compound) control

2011-01-10 Thread Kostya Vasilyev
Ale, 1 - You can model your notification on the type of interface callback mechanism used by Android views and widgets: http://developer.android.com/reference/android/view/View.html#setOnClickListener(android.view.View.OnClickListener) In your case, you'd define your own interface with a noti

[android-developers] Questions about Custom (Compound) control

2011-01-10 Thread Ale
Hi, I've developed a custom (compound) control with a count-down progress bar that I want to embed in some my activities. Now I have the following questions: 1 - I want, when the count down stops, to let the activity that contains the control that the count down has stopped. How to do that? 2 -