Searched refs:mTitle (Results 1 - 25 of 49) sorted by relevance

12

/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/browser/
H A DMusicTrack.java26 private String mTitle; field in class:MusicTrack
51 this.mTitle = title;
63 return mTitle;
66 public void setTitle(String mTitle) { argument
67 this.mTitle = mTitle;
135 return mTitle;
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebHistoryItemChromium.java31 private final String mTitle; field in class:WebHistoryItemChromium
37 mTitle = entry.getTitle();
71 return mTitle;
87 mTitle = title;
96 return new WebHistoryItemChromium(mUrl, mOriginalUrl, mTitle, mFavicon);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DAbstractDetailsDescriptionPresenter.java35 private final TextView mTitle; field in class:AbstractDetailsDescriptionPresenter.ViewHolder
51 mTitle = (TextView) view.findViewById(R.id.lb_details_description_title);
55 FontMetricsInt titleFontMetricsInt = getFontMetricsInt(mTitle);
76 mTitleFontMetricsInt = getFontMetricsInt(mTitle);
80 mTitle.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
84 mBody.setMaxLines(mTitle.getLineCount() > 1 ? mBodyMinLines : mBodyMaxLines);
90 return mTitle;
122 if (TextUtils.isEmpty(vh.mTitle.getText())) {
123 vh.mTitle.setVisibility(View.GONE);
126 vh.mTitle
[all...]
H A DSearchBar.java111 private String mTitle; field in class:SearchBar
361 mTitle = title;
369 return mTitle;
474 if (!TextUtils.isEmpty(mTitle)) {
476 title = getResources().getString(R.string.lb_search_bar_hint_with_title_speech, mTitle);
478 title = getResources().getString(R.string.lb_search_bar_hint_with_title, mTitle);
/frameworks/base/media/java/android/media/
H A DMediaDescription.java34 private final CharSequence mTitle; field in class:MediaDescription
59 mTitle = title;
69 mTitle = in.readCharSequence();
91 return mTitle;
147 dest.writeCharSequence(mTitle);
157 return mTitle + ", " + mSubtitle + ", " + mDescription;
178 private CharSequence mTitle; field in class:MediaDescription.Builder
209 mTitle = title;
272 return new MediaDescription(mMediaId, mTitle, mSubtitle, mDescription, mIcon, mIconUri,
H A DRingtone.java67 private String mTitle; field in class:Ringtone
139 if (mTitle != null) return mTitle;
140 return mTitle = getTitle(context, mUri, true);
353 mTitle = title;
/frameworks/support/v4/java/android/support/v4/media/
H A DMediaDescriptionCompat.java39 private final CharSequence mTitle; field in class:MediaDescriptionCompat
69 mTitle = title;
79 mTitle = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
101 return mTitle;
158 TextUtils.writeToParcel(mTitle, dest, flags);
171 return mTitle + ", " + mSubtitle + ", " + mDescription;
191 MediaDescriptionCompatApi21.Builder.setTitle(bob, mTitle);
255 private CharSequence mTitle; field in class:MediaDescriptionCompat.Builder
286 mTitle = title;
355 return new MediaDescriptionCompat(mMediaId, mTitle, mSubtitl
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenuItem.java37 private CharSequence mTitle; field in class:ActionMenuItem
66 mTitle = title;
106 return mTitle;
110 return mTitleCondensed != null ? mTitleCondensed : mTitle;
192 mTitle = title;
197 mTitle = mContext.getResources().getString(title);
H A DMenuItemImpl.java49 private CharSequence mTitle; field in class:MenuItemImpl
137 mTitle = title;
333 return mTitle;
350 mTitle = title;
366 return mTitleCondensed != null ? mTitleCondensed : mTitle;
374 title = mTitle;
499 return mTitle != null ? mTitle.toString() : null;
H A DActionMenuItemView.java46 private CharSequence mTitle; field in class:ActionMenuItemView
175 boolean visible = !TextUtils.isEmpty(mTitle);
179 setText(visible ? mTitle : null);
213 mTitle = title;
215 setContentDescription(mTitle);
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbAccessoryUriActivity.java71 ap.mTitle = mAccessory.getDescription();
72 if (ap.mTitle == null || ap.mTitle.length() == 0) {
73 ap.mTitle = getString(R.string.title_usb_accessory);
/frameworks/support/tests/java/android/support/v4/app/
H A DNotificationCompatActionWearableExtenderTest.java35 private String mTitle = "Test Title"; field in class:NotificationCompatActionWearableExtenderTest
88 new Notification.Action.Builder(mIcon, mTitle, mPendingIntent);
90 new NotificationCompat.Action.Builder(mIcon, mTitle, mPendingIntent);
117 new Notification.Action.Builder(mIcon, mTitle, mPendingIntent)
120 new NotificationCompat.Action.Builder(mIcon, mTitle, mPendingIntent)
156 new Notification.Action.Builder(mIcon, mTitle, mPendingIntent)
159 new NotificationCompat.Action.Builder(mIcon, mTitle, mPendingIntent)
195 new Notification.Action.Builder(mIcon, mTitle, mPendingIntent)
198 new NotificationCompat.Action.Builder(mIcon, mTitle, mPendingIntent)
215 new Notification.Action.Builder(mIcon, mTitle, mPendingInten
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DActionMenuItem.java41 private CharSequence mTitle; field in class:ActionMenuItem
70 mTitle = title;
110 return mTitle;
114 return mTitleCondensed != null ? mTitleCondensed : mTitle;
196 mTitle = title;
201 mTitle = mContext.getResources().getString(title);
H A DMenuItemImpl.java53 private CharSequence mTitle; field in class:MenuItemImpl
139 mTitle = title;
353 return mTitle;
370 mTitle = title;
388 final CharSequence ctitle = mTitleCondensed != null ? mTitleCondensed : mTitle;
407 title = mTitle;
541 return mTitle.toString();
H A DActionMenuItemView.java53 private CharSequence mTitle; field in class:ActionMenuItemView
179 boolean visible = !TextUtils.isEmpty(mTitle);
183 setText(visible ? mTitle : null);
217 mTitle = title;
219 setContentDescription(mTitle);
/frameworks/base/core/java/android/content/
H A DRestrictionEntry.java96 private String mTitle; field in class:RestrictionEntry
353 return mTitle;
361 this.mTitle = title;
415 mTitle = in.readString();
443 dest.writeString(mTitle);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DErrorFragment.java40 private String mTitle; field in class:ErrorFragment
76 mTitle = title;
84 return mTitle;
244 mTitleView.setTitle(mTitle);
H A DErrorSupportFragment.java42 private String mTitle; field in class:ErrorSupportFragment
78 mTitle = title;
86 return mTitle;
246 mTitleView.setTitle(mTitle);
H A DVerticalGridFragment.java54 private String mTitle; field in class:VerticalGridFragment
101 mTitle = title;
103 mTitleView.setTitle(mTitle);
111 return mTitle;
334 mTitleView.setTitle(mTitle);
H A DVerticalGridSupportFragment.java56 private String mTitle; field in class:VerticalGridSupportFragment
103 mTitle = title;
105 mTitleView.setTitle(mTitle);
113 return mTitle;
336 mTitleView.setTitle(mTitle);
/frameworks/base/services/core/java/com/android/server/display/
H A DOverlayDisplayWindow.java69 private String mTitle; field in class:OverlayDisplayWindow
106 mTitle = context.getResources().getString(
110 mTitle += context.getResources().getString(
198 mTitleTextView.setText(mTitle);
217 mWindowParams.setTitle(mTitle);
/frameworks/base/core/java/android/preference/
H A DPreference.java99 private CharSequence mTitle; field in class:Preference
231 mTitle = a.getString(attr);
638 if (title == null && mTitle != null || title != null && !title.equals(mTitle)) {
640 mTitle = title;
674 return mTitle;
1108 } else if (mTitle == another.mTitle) {
1111 } else if (mTitle == null) {
1113 } else if (another.mTitle
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManager.java1587 mTitle = TextUtils.stringOrSpannedString(title);
1591 return mTitle;
1619 TextUtils.writeToParcel(mTitle, out, parcelableFlags);
1667 mTitle = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
1799 if (!mTitle.equals(o.mTitle)) {
1800 mTitle = o.mTitle;
1876 Log.d("Debug", "WindowManager.LayoutParams={title=" + mTitle + "}");
2025 private CharSequence mTitle field in class:WindowManager.LayoutParams
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarContextView.java50 private CharSequence mTitle; field in class:ActionBarContextView
172 mTitle = title;
182 return mTitle;
204 mTitleView.setText(mTitle);
207 final boolean hasTitle = !TextUtils.isEmpty(mTitle);
538 event.setContentDescription(mTitle);
H A DToolbarWidgetWrapper.java77 private CharSequence mTitle; field in class:ToolbarWidgetWrapper
97 mTitle = toolbar.getTitle();
99 mTitleSet = mTitle != null;
178 0, android.R.id.home, 0, 0, mTitle);
259 mTitle = title;
422 mToolbar.setTitle(mTitle);

Completed in 667 milliseconds

12