@Override
public boolean onPreferenceChange(Preference preference, Object value) {
String stringValue = value.toString();
if (preference instanceof ListPreference) {
} else if (preference instanceof RingtonePreference) {
} else {
// For all other preferences, set the summary to the value's
// simple string representation.
preference.setSummary(stringValue);
}
return true;
}
SettingsActivity.java 文件源码
java
阅读 31
收藏 0
点赞 0
评论 0
项目:ChattyOwl
作者:
评论列表
文章目录