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ビデオ通話機能を呼び出す方法があるかどうかを知りたいだけで、意図的に音声通話を行うのと同じ方法かもしれません.
または、それに適したAPIがありますか。
助けてください。
private void startVideoCall(String number){ Intent intent = new Intent("com.android.phone.videocall",Uri.parse("tel:"+number)); intent.putExtra("videocall", true); startActivity(intent); }