AHilberink Active Member Licensed User Longtime User Oct 20, 2020 #1 Hi, May be a stupid question, but I really don't know: Using Intent like: B4X: Dim in As Intent in.Initialize(in.ACTION_VIEW, "com.sygic.aura://coordinate|"&LonAdres&"|"&LatAdres&"|drive") Intent.Initialize(Action,Uri as String): Will this "Uri as String" automatically be converted to Url (space=%20 etc.) or do I have to do this myselve? BR, André
Hi, May be a stupid question, but I really don't know: Using Intent like: B4X: Dim in As Intent in.Initialize(in.ACTION_VIEW, "com.sygic.aura://coordinate|"&LonAdres&"|"&LatAdres&"|drive") Intent.Initialize(Action,Uri as String): Will this "Uri as String" automatically be converted to Url (space=%20 etc.) or do I have to do this myselve? BR, André
Erel B4X founder Staff member Licensed User Longtime User Oct 20, 2020 #2 You need to do it yourself. You can use StringUtils.EncodeURL (only with the parameters). Upvote 0
AHilberink Active Member Licensed User Longtime User Oct 20, 2020 #3 Erel said: You need to do it yourself. You can use StringUtils.EncodeURL (only with the parameters). Click to expand... Thanks, Erel. Upvote 0
Erel said: You need to do it yourself. You can use StringUtils.EncodeURL (only with the parameters). Click to expand... Thanks, Erel.