2014年4月28日

设置和获取Android中各种音量

摘要: 通过程序获取android系统手机的铃声和音量。同样,设置铃声和音量的方法也很简单!AudioManager am = (AudioManager) getSystemService(Context.AUDIO_SERVICE);//通话音量 int max = am.getStreamMaxVol... 阅读全文

posted @ 2014-04-28 10:56 strangeman 阅读(678) 评论(0) 推荐(0) 编辑

自定义广播

摘要: mSDStateBrocast = new SDStateBrocast(); IntentFilter intentFilter2 = new IntentFilter(); intentFilter2.addAction(Intent.ACTION_MEDIA_MOU... 阅读全文

posted @ 2014-04-28 10:21 strangeman 阅读(221) 评论(0) 推荐(0) 编辑

发送广播

摘要: public void sendPlayStateBrocast() {if (mContext != null){Intent intent = new Intent(BROCAST_NAME);intent.putExtra(MusicPlayState.PLAY_STATE_NAME, mPl... 阅读全文

posted @ 2014-04-28 10:17 strangeman 阅读(122) 评论(0) 推荐(0) 编辑

导航