Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
number に電話をかけるアプリを作成しました*123456789#が、アプリがこの番号に電話をかけると、Android は*123456789( なしで#) 呼び出すだけです。
*123456789#
*123456789
#
私たちを手伝ってくれますか?
電話番号をエンコードするだけです。
String phonenumber = "*123456789#"; encodedPhonenumber = URLEncoder.encode(phonenumber, "UTF-8"); startActivity(new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + encodedPhonenumber)));