Searched refs:mSummary (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/preference/
H A DListPreference.java42 private String mSummary; field in class:ListPreference
60 mSummary = a.getString(com.android.internal.R.styleable.Preference_summary);
165 if (mSummary == null) {
168 return String.format(mSummary, entry == null ? "" : entry);
184 if (summary == null && mSummary != null) {
185 mSummary = null;
186 } else if (summary != null && !summary.equals(mSummary)) {
187 mSummary = summary.toString();
H A DMultiCheckPreference.java42 private String mSummary; field in class:MultiCheckPreference
63 mSummary = a.getString(com.android.internal.R.styleable.Preference_summary);
190 if (mSummary == null) {
193 return mSummary;
209 if (summary == null && mSummary != null) {
210 mSummary = null;
211 } else if (summary != null && !summary.equals(mSummary)) {
212 mSummary = summary.toString();
H A DPreference.java101 private CharSequence mSummary; field in class:Preference
235 mSummary = a.getString(attr);
721 return mSummary;
730 if (summary == null && mSummary != null || summary != null && !summary.equals(mSummary)) {
731 mSummary = summary;

Completed in 36 milliseconds