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.
目前我正在尝试创建一个 android 应用程序来处理我们的呼叫管理器的通话。问题是URI.parse()删除电话号码中不允许的所有符号的方法,但它必须传递一个包含“#”的号码。
URI.parse()
有没有办法将像“012347#5687”这样的整数传递给android action_call意图?
我使用此代码并且像魅力一样工作
Intent my_callIntent = new Intent(Intent.ACTION_CALL); my_callIntent.setData(Uri.parse("tel:*131%23"));
其中 %23 代表#
希望这有帮助