| Platform | Since |
|---|---|
| Android | 1.5 |
The Titanium binding of android.R. Note that this accesses Android system-wide resources, not your application's resources. To access your application's resources, you want Titanium.App.Android.R.
These properties and sub-properties are queried directly against the android.R class, and should have the same syntax. For example, to retrieve the "OK" string in Android:
Ti.Android.currentActivity.getString(Ti.Android.R.string.ok);
| Name | Summary |
|---|---|
| addEventListener |
Adds the specified callback as an event listener for the named event. |
| fireEvent |
Fires a synthesized event to any registered listeners. |
| removeEventListener |
Removes the specified callback as an event listener for the named event. |