Searched refs:summary (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/location/java/android/location/
H A DSettingInjectorService.java29 * Dynamically specifies the summary (subtitle) and enabled status of a preference injected into
79 * distinct value for the setting, then the {@link #onGetSummary()} value should represent a summary
112 * Name of the bundle key for the string specifying the summary for the setting (e.g., "ON" or
117 public static final String SUMMARY_KEY = "summary";
163 String summary;
165 summary = onGetSummary();
179 sendStatus(intent, summary, true);
183 sendStatus(intent, summary, enabled);
187 * Send the summary and enabled values back to the caller via the messenger encoded in the
190 private void sendStatus(Intent intent, String summary, boolea argument
[all...]
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
H A DStackOverflowXmlParser.java69 // It includes the data members "title," "link," and "summary."
73 public final String summary; field in class:StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) { argument
77 this.summary = summary;
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
88 String summary = null;
97 } else if (name.equals("summary")) {
98 summary = readSummary(parser);
105 return new Entry(title, summary, lin
[all...]
H A DNetworkActivity.java221 String summary = null;
225 // Checks whether the user set the preference to include summary text
249 // a text summary.
254 // If the user set the preference to include summary text,
257 htmlString.append(entry.summary);
/frameworks/base/core/java/android/preference/
H A DTwoStatePreference.java108 * Sets the summary to be shown when checked.
110 * @param summary The summary to be shown when checked.
112 public void setSummaryOn(CharSequence summary) { argument
113 mSummaryOn = summary;
121 * @param summaryResId The summary as a resource.
128 * Returns the summary to be shown when checked.
129 * @return The summary.
136 * Sets the summary to be shown when unchecked.
138 * @param summary Th
140 setSummaryOff(CharSequence summary) argument
[all...]
H A DListPreference.java55 /* Retrieve the Preference summary attribute since it's private
147 * Returns the summary of this ListPreference. If the summary
152 * @return the summary with appropriate string substitution
165 * Sets the summary for this Preference with a CharSequence.
166 * If the summary has a
171 * @param summary The summary for the preference.
174 public void setSummary(CharSequence summary) { argument
175 super.setSummary(summary);
[all...]
H A DMultiCheckPreference.java57 /* Retrieve the Preference summary attribute since it's private
172 * Returns the summary of this ListPreference. If the summary
177 * @return the summary with appropriate string substitution
189 * Sets the summary for this Preference with a CharSequence.
190 * If the summary has a
195 * @param summary The summary for the preference.
198 public void setSummary(CharSequence summary) { argument
199 super.setSummary(summary);
[all...]
H A DPreference.java394 * {@link android.R.id#title} and {@link android.R.id#summary}.
522 com.android.internal.R.id.summary);
524 final CharSequence summary = getSummary();
525 if (!TextUtils.isEmpty(summary)) {
526 summaryView.setText(summary);
684 * Returns the summary of this Preference.
686 * @return The summary.
694 * Sets the summary for this Preference with a CharSequence.
696 * @param summary The summary fo
698 setSummary(CharSequence summary) argument
[all...]
H A DPreferenceActivity.java258 TextView summary; field in class:PreferenceActivity.HeaderAdapter.HeaderViewHolder
279 holder.summary = (TextView) view.findViewById(com.android.internal.R.id.summary);
290 CharSequence summary = header.getSummary(getContext().getResources());
291 if (!TextUtils.isEmpty(summary)) {
292 holder.summary.setVisibility(View.VISIBLE);
293 holder.summary.setText(summary);
295 holder.summary.setVisibility(View.GONE);
334 * Resource ID of optional summary describin
343 public CharSequence summary; field in class:PreferenceActivity.Header
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DRootInfo.java52 public String summary; field in class:RootInfo
73 summary = null;
93 summary = DurableUtils.readNullableString(in);
112 DurableUtils.writeNullableString(out, summary);
149 root.summary = getCursorString(cursor, Root.COLUMN_SUMMARY);
230 return !TextUtils.isEmpty(summary) ? summary : title;
H A DDocumentInfo.java53 public String summary; field in class:DocumentInfo
72 summary = null;
92 summary = DurableUtils.readNullableString(in);
111 DurableUtils.writeNullableString(out, summary);
160 this.summary = getCursorString(cursor, Document.COLUMN_SUMMARY);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsFragment.java234 final TextView summary = (TextView) convertView.findViewById(android.R.id.summary);
240 // Show available space if no summary
241 String summaryText = root.summary;
247 summary.setText(summaryText);
248 summary.setVisibility(TextUtils.isEmpty(summaryText) ? View.GONE : View.VISIBLE);
275 final TextView summary = (TextView) convertView.findViewById(android.R.id.summary);
281 // TODO: match existing summary behavior from disambig dialog
282 summary
[all...]
H A DDirectoryFragment.java790 final TextView summary = (TextView) convertView.findViewById(android.R.id.summary);
859 if (summary != null) {
863 summary.setText(root.getDirectoryString());
864 summary.setVisibility(View.VISIBLE);
868 // No summary needed if icon speaks for itself
869 summary.setVisibility(View.INVISIBLE);
871 summary.setText(root.getDirectoryString());
872 summary.setVisibility(View.VISIBLE);
873 summary
[all...]
/frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
H A DInputMethodSettingsImpl.java181 final String summary = getEnabledSubtypesLabel(mContext, mImm, mImi);
182 if (!TextUtils.isEmpty(summary)) {
183 mSubtypeEnablerPreference.setSummary(summary);
/frameworks/wilhelm/src/itf/
H A DIOutputMixExt.c218 Summary summary; local
220 summary = GAIN_MUTE;
222 summary = GAIN_UNITY;
224 summary = GAIN_OTHER;
226 summaries[channel] = summary;
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java521 boolean summary = false;
532 summary = true;
559 doListPermissions(groupList, groups, labels, summary,
565 doListPermissions(groupList, groups, labels, summary,
572 doListPermissions(groupList, groups, labels, summary,
578 doListPermissions(groupList, groups, labels, summary,
588 boolean groups, boolean labels, boolean summary,
599 if (summary) {
625 System.out.println(((labels && !summary)
644 if (summary) {
587 doListPermissions(ArrayList<String> groupList, boolean groups, boolean labels, boolean summary, int startProtectionLevel, int endProtectionLevel) argument
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkStatsServiceTest.java851 // verify summary API
870 // verify summary API
898 private void expectNetworkStatsSummary(NetworkStats summary) throws Exception { argument
899 expectNetworkStatsSummaryDev(summary);
900 expectNetworkStatsSummaryXt(summary);
903 private void expectNetworkStatsSummaryDev(NetworkStats summary) throws Exception { argument
904 expect(mNetManager.getNetworkStatsSummaryDev()).andReturn(summary).atLeastOnce();
907 private void expectNetworkStatsSummaryXt(NetworkStats summary) throws Exception { argument
908 expect(mNetManager.getNetworkStatsSummaryXt()).andReturn(summary).atLeastOnce();
/frameworks/base/docs/html/reference/renderscript/
H A Ddoxygen.css747 div.summary
756 div.summary a
925 .summary { display: none; }
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQuickSettingsModel.java784 final CharSequence summary = subtype != null
788 return summary.toString();
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java1529 final CharSequence summary = InputMethodUtils.getImeAndSubtypeDisplayName(
1533 mContext, title, summary, mImeSwitchPendingIntent);
1536 Slog.d(TAG, "--- show notification: label = " + summary);

Completed in 870 milliseconds