Searched defs:summary (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Browser/src/com/android/browser/preferences/
H A DNonformattingListPreference.java35 public void setSummary(CharSequence summary) { argument
36 mSummary = summary;
37 super.setSummary(summary);
H A DSeekBarSummaryPreference.java55 public void setSummary(CharSequence summary) { argument
56 mSummary = summary;
/packages/apps/Phone/src/com/android/phone/
H A DDataUsageListener.java61 public DataUsageListener(Context context, Preference summary, PreferenceScreen prefScreen) { argument
63 mSummaryPref = summary;
H A DEditPhoneNumberPreference.java136 //get the summary settings, use CheckBoxPreference as the standard.
156 // Sync the summary view
157 TextView summaryView = (TextView) view.findViewById(android.R.id.summary);
162 //set summary depending upon mode
432 public EditPhoneNumberPreference setSummaryOn(CharSequence summary) { argument
433 mSummaryOn = summary;
446 //get the summary string for the on state
456 public EditPhoneNumberPreference setSummaryOff(CharSequence summary) { argument
457 mSummaryOff = summary;
470 //get the summary strin
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DPrivacySettings.java158 private void setConfigureSummary(String summary) { argument
159 if (summary != null) {
160 mConfigure.setSummary(summary);
169 String summary = mBackupManager.getDestinationString(transport);
170 setConfigureSummary(summary);
H A DSettings.java593 TextView summary; field in class:Settings.HeaderAdapter.HeaderViewHolder
670 holder.summary = (TextView)
671 view.findViewById(com.android.internal.R.id.summary);
682 holder.summary = (TextView)
683 view.findViewById(com.android.internal.R.id.summary);
724 CharSequence summary = header.getSummary(getContext().getResources());
725 if (!TextUtils.isEmpty(summary)) {
726 holder.summary.setVisibility(View.VISIBLE);
727 holder.summary.setText(summary);
[all...]
/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DPowerUsageDetail.java197 final TextView summary = (TextView) mRootView.findViewById(android.R.id.summary);
198 summary.setText(getDescriptionForDrainType());
199 summary.setVisibility(View.VISIBLE);
402 private void addControl(int title, int summary, int action) { argument
408 TextView summaryView = (TextView) item.findViewById(R.id.summary);
410 summaryView.setText(res.getString(summary));

Completed in 176 milliseconds