Searched defs:mSummary (Results 1 - 3 of 3) sorted by last modified time

/frameworks/base/core/java/android/preference/
H A DListPreference.java42 private String mSummary; field in class:ListPreference
59 mSummary = a.getString(com.android.internal.R.styleable.Preference_summary);
149 if (mSummary == null || entry == null) {
152 return String.format(mSummary, entry);
168 if (summary == null && mSummary != null) {
169 mSummary = null;
170 } else if (summary != null && !summary.equals(mSummary)) {
171 mSummary = summary.toString();
H A DMultiCheckPreference.java42 private String mSummary; field in class:MultiCheckPreference
62 mSummary = a.getString(com.android.internal.R.styleable.Preference_summary);
181 if (mSummary == null) {
184 return mSummary;
200 if (summary == null && mSummary != null) {
201 mSummary = null;
202 } else if (summary != null && !summary.equals(mSummary)) {
203 mSummary = summary.toString();
H A DPreference.java101 private CharSequence mSummary; field in class:Preference
231 mSummary = a.getString(attr);
688 return mSummary;
697 if (summary == null && mSummary != null || summary != null && !summary.equals(mSummary)) {
698 mSummary = summary;

Completed in 141 milliseconds