I don’t know if it’s possible but in my app I got an activity that show a phone number (retrieve from the web).
Can I send this number to the main phone app of android? For example to call it or save it?
I don’t know if it’s possible but in my app I got an activity
Share
You can create a
tel:...Uri, where the...is replaced by your phone number, then use thatUriwithACTION_DIALorACTION_CALL. For example:The code shown above is from this sample project.