I need to compose and not call a number.
What do you mean by that? That the number has been entered and is ready to call if you press a button?
Dim in As Intent
in.Initialize(in.ACTION_VIEW, "tell:*#10#")
StartActivity(in)
Dim in As Intent
in.Initialize(in.ACTION_VIEW, "tell:" & Chr(42) & Chr(35) & "10" & Chr(35))
StartActivity(in)
You can create such an Intent:
B4X:Dim in As Intent in.Initialize("android.intent.action.DIAL", "tel:*%23*%230011%23*%23") StartActivity(in)
This is the URL encoding of #. You can go to this site: URL Decoder/Encoder and enter the value to see the conversion.