android.support.v7.preference.Preference.getSummary()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(158)

本文整理了Java中android.support.v7.preference.Preference.getSummary()方法的一些代码示例,展示了Preference.getSummary()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Preference.getSummary()方法的具体详情如下:
包路径:android.support.v7.preference.Preference
类名称:Preference
方法名:getSummary

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", ""));

相关文章