首页 > 代码库 > 解决:铃声改变,来短信,短信设置中默认铃声的名称没有同步更新
解决:铃声改变,来短信,短信设置中默认铃声的名称没有同步更新
短信界面没有关闭的情况下,在设置中进行操作,短信设置界面中不会进行刷新。因此在当MessagingPreferenceActivity处于活动(onResume)的时候重新初始化,添加代码如下:
super.onResume();
loadPrefs();
// Since the enabled notifications pref can be changed outside of this activity,
// we have to reload it whenever we resume.
setEnabledNotificationsPref();
// Initialize the sms signature
updateSignatureStatus();
registerListeners();
boolean airplaneModeOn = isAirplaneModeOn();
// Caused by the ICC card state maybe changed outside of this activity,
// we need to update the state of the SMSC preference.
updateSMSCPref(ALL_SUB, airplaneModeOn);
}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。