Android call intent with '#' sign as number, prevent Uri.parse remove # -


i want call number '*140*123456#' or '141#123456#'. uri.parse(phonenumber) method removes '#' signs , numbers after it. it's solution?

use

uri.encode(phonenumber) 

to encode unresevered characters

take @ https://developer.android.com/reference/android/net/uri.html#encode(java.lang.string, java.lang.string)


Comments

Popular posts from this blog

javascript - Clear button on addentry page doesn't work -

python - Error: Unresolved reference 'selenium' What is the reason? -

php - Need to store a large amount of data in session with CI 3 but on storing large data in session it is itself destorying automatically -