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フォンがサイレントかどうかを知りたいAndroidアプリケーションを開発しています。Androidエミュレーターでこのことをコードで確認する方法を知る必要があります。
要件に応じて AudioManager クラスを使用できます。
AudioManager am = (AudioManager)getSystemService(Context.AUDIO_SERVICE); if (am.getRingerMode() == AudioManager.RINGER_MODE_SILENT) { // silent mode }