mt6735 后台播放FM,手机切换到airplane mode,FM不会停止
时间:10-02
整理:3721RD
点击:
[DESCRIPTION]
部分客户要求在播放FM时,手机切换到飞行模式,FM自动停止
[SOLUTION]
在FM APP中添加相关消息处理函数,监听到飞行模式开启后将FM停止,修改code如下:
1.修改FMRadioService.java中 public void onReceive(Context context, Intent intent)
在
else {
LogUtils.w(TAG, "Error: undefined action.");
}
之前添加:
else if(Intent.ACTION_AIRPLANE_MODE_CHANGED.equals(action)){
boolean isAirPlaneMode = intent.getBooleanExtra("state",false);
if(isAirPlaneMode){
LogUtils.d(TAG, ">>>ACTION_AIRPLANE_MODE_CHANGED");
if (mIspowerUp) {
//enableFMAudio(false);
powerDown();
}
}
else{
if (!mIsPowerUp) {
//enableFMAudio(true);
//powerUpFM(float frequency);
tuneStation(FMRadioUtils.computeFrequency(getFrequency()));
}
}
}
2.修改 public void onCreate()
在 fiLTEr.adDACtion(Intent.ACTION_SCREEN_OFF);
之后添加 filter.addAction(Intent.ACTION_AIRPLANE_MODE_CHANGED);
部分客户要求在播放FM时,手机切换到飞行模式,FM自动停止
[SOLUTION]
在FM APP中添加相关消息处理函数,监听到飞行模式开启后将FM停止,修改code如下:
1.修改FMRadioService.java中 public void onReceive(Context context, Intent intent)
在
else {
LogUtils.w(TAG, "Error: undefined action.");
}
之前添加:
else if(Intent.ACTION_AIRPLANE_MODE_CHANGED.equals(action)){
boolean isAirPlaneMode = intent.getBooleanExtra("state",false);
if(isAirPlaneMode){
LogUtils.d(TAG, ">>>ACTION_AIRPLANE_MODE_CHANGED");
if (mIspowerUp) {
//enableFMAudio(false);
powerDown();
}
}
else{
if (!mIsPowerUp) {
//enableFMAudio(true);
//powerUpFM(float frequency);
tuneStation(FMRadioUtils.computeFrequency(getFrequency()));
}
}
}
2.修改 public void onCreate()
在 fiLTEr.adDACtion(Intent.ACTION_SCREEN_OFF);
之后添加 filter.addAction(Intent.ACTION_AIRPLANE_MODE_CHANGED);