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.
phonegap を使用して Android アプリを作成しています。ユーザーが直接呼び出すことができるように、アプリケーションからワンタッチ呼び出しを呼び出す必要があります。< a href='tel:xxxx...' >を使用しましたが、Android Dialer ダイアログ ボックスが開き、ユーザーは呼び出しボタンを押して最初の呼び出しを行う必要があります。この中間のダイヤラーを削除して、直接電話をかけられますか?
これを試して、
Intent intent = new Intent("android.intent.action.CALL", Uri.parse("tel:xxxx...")); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(intent);
このコードは、通話ボタンを押さなくてもダイヤルできます。
Android 2.3.6 でテスト済み