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.
我可以直接拨打电话而不拨打拨号意图吗?
我想使用这种呼叫方式来创建呼叫管理器。
有哪些不同的拨打电话方式?
不,您必须使用Intent.ACTION_CALL. 这是唯一的方法:
Intent.ACTION_CALL
Intent dialIntent = new Intent(Intent.ACTION_CALL); dialIntent.setData(Uri.parse("tel:000000")); startActivity(dialIntent);
据我所知,这在 SDK 应用程序中是不可能的。您必须Intent.ACTION_CALL.用于拨打电话..
Intent.ACTION_CALL.