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 out = new Intent(); out.setAction(Intent.ACTION_CALL); out.setData(Uri.parse("tel:" + Uri.encode("+456"))); startActivity(out); <uses-permission android:name="android.permission.CALL_PHONE"/>