Indicates if the tip option will be activated. Possible values are:
1: activates the tip option0: deactivates the tip option
Any other value than 0 or 1 results in no change to the current tip settings
Usage
intent.putExtra("SETTINGTIP", "Possible Values");
Usage Examples
- To activate the tip, use
intent.putExtra("SETTINGTIP", "1"); - To deactivate the tip, use
intent.putExtra("SETTINGTIP", "0");
Possible Extra String Label Values
| Possible Values | Description | Usage |
|---|---|---|
| 1 | Activates the tip option | intent.putExtra("SETTINGTIP", "1"); |
| 0 | Deactivates the tip option | intent.putExtra("SETTINGTIP", "0"); |
| 4 | No change to the current tip option | intent.putExtra("SETTINGTIP", "4"); |