本文整理了Java中android.support.v7.preference.Preference.getSummary()
方法的一些代码示例,展示了Preference.getSummary()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Preference.getSummary()
方法的具体详情如下:
包路径:android.support.v7.preference.Preference
类名称:Preference
方法名:getSummary
暂无
代码示例来源:origin: vitas/beaconloc
private String getRingtoneValue() {
return findPreference("bn_notification_action_ringtone").getSummary().toString();
}
代码示例来源:origin: LonamiWebs/Stringlate
if ((pref = findPreference(R.string.pref_key__more_info__app)) != null && pref.getSummary() == null) {
pref.setIcon(R.drawable.ic_launcher);
pref.setSummary(String.format(locale, "%s\nVersion v%s (%d)", _cu.getPackageName(), _cu.getAppVersionName(), _cu.bcint("VERSION_CODE", 0)));
if ((pref = findPreference(R.string.pref_key__more_info__copy_build_information)) != null && pref.getSummary() == null) {
String summary = String.format(locale, "\n<b>Package:</b> %s\n<b>Version:</b> v%s (%d)", _cu.getPackageName(), _cu.getAppVersionName(), _cu.bcint("VERSION_CODE", 0));
summary += (tmp = _cu.bcstr("FLAVOR", "")).isEmpty() ? "" : ("\n<b>Flavor:</b> " + tmp.replace("flavor", ""));
内容来源于网络,如有侵权,请联系作者删除!