Here's the thing:
I have a widget and on it are many buttons. Now, I want to keep track if buttons are clicked from widget. In a normal layout:
public void onClick(...){
// other codes
Log.d("", "clicked");
}
How about in widget? Thanks.
Thanks.