Shaw
Shaw

Reputation: 1495

How can I find the syntax of setting a listener in android

I am learning android programming. How can I find the syntax of setting a listener in this

For instance , we can use setOnTimeChangedListener(...) to set a listener for TimePicker widget. Where can I find the setOnTimeChangedListener in android reference?

Upvotes: 0

Views: 78

Answers (1)

hatcyl
hatcyl

Reputation: 2352

You usually do not find "how to use" examples in API references.

There are "guides" to help you though. For events: Input Events might help.

Upvotes: 1

Related Questions