Posts

Showing posts with the label Using Intents

Use of Intent to Mail, SMS, MMS and Call - Sketchware Codes

Image
In Sketchware, the uses of Intent activity are limited as it contains only three setAction options: ACTION_VIEW, ACTION_DIAL, and ACTION_CALL. Here I mention the logic/codes for a few uses of Intent. 1. Open a Url in mobile browser. Intent  (name)  setAction   ACTION_VIEW Intent  (name)  setData   http:// xyz.com StartActivity  (name) 2. Open mobile contacts. Intent  (name)  setAction   ACTION_VIEW Intent  (name)  setData   content://contacts/people/ StartActivity  (name) 3. Open mobile dialer. Intent  (name)  setAction   ACTION_DIAL Intent  (name)  setData   tel: 894...... StartActivity  (name) Also, Intent  (name)  setAction   ACTION_VIEW Intent  (name)  setData   tel: 894...... StartActivity  (name) 4. Call a number. Intent  (name)  setAction   ACTION_CALL Intent  (name)  setData   tel: 894...... StartActivity  ...