Searched refs:title (Results 126 - 150 of 213) sorted by relevance

123456789

/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java479 * Set the action bar title. This will always replace or override window titles.
480 * @param title Title to set
484 public void setTitle(CharSequence title) { argument
486 setTitleImpl(title);
490 * Set the window title. A window title will always be replaced or overridden by a user title.
491 * @param title Title to set
495 public void setWindowTitle(CharSequence title) { argument
497 setTitleImpl(title);
501 setTitleImpl(CharSequence title) argument
[all...]
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DSafeSaxTest.java273 mediaGroup.getChild(MEDIA_NAMESPACE, "title")
276 video.title = body;
413 if (localName.equals("title")
516 if (localName.equals("title")) {
517 video.title = takeText();
528 public String title; field in class:SafeSaxTest.YouTubeVideo
/frameworks/base/services/core/java/com/android/server/storage/
H A DDeviceStorageMonitorService.java465 CharSequence title = context.getText(
474 .setTicker(title)
477 .setContentTitle(title)
/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditLayout.java107 public void setTitle(CharSequence title) { argument
/frameworks/base/core/java/android/webkit/
H A DWebChromeClient.java38 * Notify the host application of a change in the document title.
40 * @param title A String containing the new title of the document.
42 public void onReceivedTitle(WebView view, String title) {} argument
469 * Returns the title to use for this file selector, or null. If null a default
470 * title should be used.
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DSaveFragment.java37 * Display document title editor and save button.
79 mDisplayName = (EditText) view.findViewById(android.R.id.title);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DSelectPrinterActivity.java325 TextView titleView = (TextView) findViewById(R.id.title);
540 CharSequence title = printer.getName();
554 TextView titleView = (TextView) convertView.findViewById(R.id.title);
555 titleView.setText(title);
/frameworks/base/core/java/android/app/
H A DActionBar.java43 * A primary toolbar within the activity that may display the activity title, application-level
67 * the left, followed by the activity title. If your activity has an options menu, you can make
75 * in place of their standard title text.</p>
102 * and title text with an optional subtitle. Clicking any of these elements
114 * List navigation mode. Instead of static title text this mode
126 * Tab navigation mode. Instead of static title text this mode
183 * Show the activity title and subtitle, if present.
203 * Allow the title to wrap onto multiple lines if space is available
381 * Set the action bar's title. This will only be displayed if
384 * @param title Titl
389 setTitle(CharSequence title) argument
1065 setWindowTitle(CharSequence title) argument
[all...]
H A DActivity.java2793 CharSequence title = getTitle();
2794 if (!TextUtils.isEmpty(title)) {
2795 event.getText().add(title);
5049 * Change the title associated with this activity. If this is a
5050 * top-level activity, the title for its window will change. If it
5054 public void setTitle(CharSequence title) { argument
5055 mTitle = title;
5056 onTitleChanged(title, mTitleColor);
5059 mParent.onChildTitleChanged(this, title);
5064 * Change the title associate
5097 onTitleChanged(CharSequence title, int color) argument
5112 onChildTitleChanged(Activity childActivity, CharSequence title) argument
5922 attach(Context context, ActivityThread aThread, Instrumentation instr, IBinder token, int ident, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, NonConfigurationInstances lastNonConfigurationInstances, Configuration config, String referrer, IVoiceInteractor voiceInteractor) argument
[all...]
H A DDialog.java528 * Set the title text for this dialog's window.
530 * @param title The new text to display in the title.
532 public void setTitle(CharSequence title) { argument
533 mWindow.setTitle(title);
534 mWindow.getAttributes().setTitle(title);
538 * Set the title text for this dialog's window. The text is retrieved
541 * @param titleId the title's text resource identifier
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenuItemView.java212 public void setTitle(CharSequence title) { argument
213 mTitle = title;
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DFrameworkActionBarWrapper.java94 public void setTitle(CharSequence title) { argument
95 mActionBar.setTitle(title);
/frameworks/base/tools/velocityplot/
H A Dvelocityplot.py129 def _add_timeseries_axes(self, index, title, ylabel, ylim, yticks, sharex=None):
140 axes.text(0.02, 0.02, title, transform=axes.transAxes, fontsize=10, fontweight='bold')
/frameworks/support/tests/java/android/support/v4/app/
H A DNotificationCompatWearableExtenderTest.java84 R.drawable.action_icon, "Test title", mPendingIntent)
95 .setContentTitle("page2 title")
132 R.drawable.action_icon, "Test title", mPendingIntent)
143 .setContentTitle("page2 title")
216 assertEquals(real.title, compat.title);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DVerticalGridFragment.java79 * Sets the badge drawable displayed in the title area.
98 * Sets a title for the fragment.
100 public void setTitle(String title) { argument
101 mTitle = title;
108 * Returns the title for the fragment.
189 // if has no sibling in front of it, show title
242 * affordance in the title area. When set to non-null, the title area will
H A DVerticalGridSupportFragment.java81 * Sets the badge drawable displayed in the title area.
100 * Sets a title for the fragment.
102 public void setTitle(String title) { argument
103 mTitle = title;
110 * Returns the title for the fragment.
191 // if has no sibling in front of it, show title
244 * affordance in the title area. When set to non-null, the title area will
H A DBrowseFragment.java80 // BUNDLE attribute for title is showing
219 private static final String ARG_TITLE = BrowseFragment.class.getCanonicalName() + ".title";
229 * @param title The title of the BrowseFragment.
235 public static Bundle createArgs(Bundle args, String title, int headersState) { argument
239 args.putString(ARG_TITLE, title);
369 * affordance in the fragment title. When set to non-null, the title will
985 * Sets the drawable displayed in the browse fragment title.
987 * @param drawable The Drawable to display in the browse fragment title
1010 setTitle(String title) argument
[all...]
H A DBrowseSupportFragment.java82 // BUNDLE attribute for title is showing
221 private static final String ARG_TITLE = BrowseSupportFragment.class.getCanonicalName() + ".title";
231 * @param title The title of the BrowseSupportFragment.
237 public static Bundle createArgs(Bundle args, String title, int headersState) { argument
241 args.putString(ARG_TITLE, title);
371 * affordance in the fragment title. When set to non-null, the title will
987 * Sets the drawable displayed in the browse fragment title.
989 * @param drawable The Drawable to display in the browse fragment title
1012 setTitle(String title) argument
[all...]
/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaSessionCompat.java342 * Set the title of the play queue. The UI should display this title along
346 * @param title The title of the play queue.
348 public void setQueueTitle(CharSequence title) { argument
349 mImpl.setQueueTitle(title);
918 void setQueueTitle(CharSequence title); argument
1242 public void setQueueTitle(CharSequence title) { argument
1243 mQueueTitle = title;
1244 sendQueueTitle(title);
1885 setQueueTitle(CharSequence title) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DActionMenuItemView.java216 public void setTitle(CharSequence title) { argument
217 mTitle = title;
/frameworks/base/core/java/com/android/internal/app/
H A DWindowDecorActionBar.java430 public void setTitle(CharSequence title) { argument
431 mDecorToolbar.setTitle(title);
435 public void setWindowTitle(CharSequence title) { argument
436 mDecorToolbar.setWindowTitle(title);
1032 public void setTitle(CharSequence title) { argument
1033 mContextView.setTitle(title);
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbDeviceManager.java719 // clear notification if title needs changing
728 CharSequence title = r.getText(id);
734 notification.tickerText = title;
747 notification.setLatestEventInfo(mContext, title, message, pi);
764 CharSequence title = r.getText(id);
772 notification.tickerText = title;
785 notification.setLatestEventInfo(mContext, title, message, pi);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DWindowDecorActionBar.java440 public void setTitle(CharSequence title) { argument
441 mDecorToolbar.setTitle(title);
445 public void setWindowTitle(CharSequence title) { argument
446 mDecorToolbar.setWindowTitle(title);
1033 public void setTitle(CharSequence title) { argument
1034 mContextView.setTitle(title);
/frameworks/base/media/java/android/media/session/
H A DMediaController.java190 * Get the queue title for this session.
558 * Override to handle changes to the queue title.
560 * @param title The title that should be displayed along with the play queue such as
561 * "Now Playing". May be null if there is no such title.
563 public void onQueueTitleChanged(@Nullable CharSequence title) { argument
932 public void onQueueTitleChanged(CharSequence title) { argument
935 controller.postMessage(MSG_UPDATE_QUEUE_TITLE, title, null);
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DNotificationBuilderTest.java259 // title
260 final CharSequence title = getRadioTag(R.id.group_title);
261 if (!TextUtils.isEmpty(title)) {
262 b.setContentTitle(title);

Completed in 913 milliseconds

123456789