Searched defs:title (Results 176 - 200 of 214) sorted by relevance

123456789

/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
H A DMenuItemImpl.java120 * @param title The text to display for the item.
123 CharSequence title, int showAsAction) {
142 mTitle = title;
360 * Gets the title for a particular {@link MenuView.ItemView}
362 * @param itemView The ItemView that is receiving the title
363 * @return Either the title or condensed title based on what the ItemView prefers
372 public MenuItem setTitle(CharSequence title) { argument
373 mTitle = title;
378 mSubMenu.setHeaderTitle(title);
122 MenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering, CharSequence title, int showAsAction) argument
385 setTitle(int title) argument
405 setTitleCondensed(CharSequence title) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionBarOverlayLayout.java613 public void setWindowTitle(CharSequence title) { argument
615 mDecorToolbar.setWindowTitle(title);
H A DToolbar.java93 * <li><em>A title and subtitle.</em> The title should be a signpost for the Toolbar's current
96 * If an app uses a logo image it should strongly consider omitting a title and subtitle.</li>
113 * toolbars than on their application icon. The use of application icon plus title as a standard
304 final CharSequence title = a.getText(R.styleable.Toolbar_title);
305 if (!TextUtils.isEmpty(title)) {
306 setTitle(title);
375 * Sets the title margin.
377 * @param start the starting title margin in pixels
378 * @param top the top title margi
752 setTitle(CharSequence title) argument
[all...]
/frameworks/base/core/java/android/app/
H A DDownloadManager.java74 * The client-supplied title for this download. This will be displayed in system notifications.
601 * Set the title of this download, to be displayed in notifications (if enabled). If no
602 * title is given, a default one will be assigned based on the download filename, once the
606 public Request setTitle(CharSequence title) { argument
607 mTitle = title;
1308 * @param title the title that would appear for this file in Downloads App.
1322 public long addCompletedDownload(String title, String description, argument
1325 return addCompletedDownload(title, description, isMediaScannerScannable, mimeType, path,
1337 * @param title th
1353 addCompletedDownload(String title, String description, boolean isMediaScannerScannable, String mimeType, String path, long length, boolean showNotification, Uri uri, Uri referer) argument
1361 addCompletedDownload(String title, String description, boolean isMediaScannerScannable, String mimeType, String path, long length, boolean showNotification, boolean allowWrite) argument
1369 addCompletedDownload(String title, String description, boolean isMediaScannerScannable, String mimeType, String path, long length, boolean showNotification, boolean allowWrite, Uri uri, Uri referer) argument
[all...]
H A DInstrumentation.java1038 * @param title The title, typically retrieved from the ActivityInfo record
1050 CharSequence title, Activity parent, String id,
1056 info, title, parent, id,
1048 newActivity(Class<?> clazz, Context context, IBinder token, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, Object lastNonConfigurationInstance) argument
/frameworks/base/core/java/android/content/pm/
H A DShortcutInfo.java837 * Sets the short title of a shortcut.
870 * <p>This field is intended to be more descriptive than the shortcut title. The launcher
871 * shows this instead of the short title when it has enough space.
1844 Icon icon, CharSequence title, int titleResId, String titleResName,
1855 mTitle = title;
1842 ShortcutInfo( @serIdInt int userId, String id, String packageName, ComponentName activity, Icon icon, CharSequence title, int titleResId, String titleResName, CharSequence text, int textResId, String textResName, CharSequence disabledMessage, int disabledMessageResId, String disabledMessageResName, Set<String> categories, Intent[] intentsWithExtras, int rank, PersistableBundle extras, long lastChangedTimestamp, int flags, int iconResId, String iconResName, String bitmapPath) argument
/frameworks/base/core/java/android/preference/
H A DPreference.java425 * {@link android.R.id#title} and {@link android.R.id#summary}.
544 final TextView titleView = (TextView) view.findViewById(com.android.internal.R.id.title);
546 final CharSequence title = getTitle();
547 if (!TextUtils.isEmpty(title)) {
548 titleView.setText(title);
638 * Sets the title for this Preference with a CharSequence.
639 * This title will be placed into the ID
640 * {@link android.R.id#title} within the View created by
643 * @param title The title fo
645 setTitle(CharSequence title) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DMediaStore.java175 * The name of the Intent-extra used to define the song title
177 public static final String EXTRA_MEDIA_TITLE = "android.intent.extra.title";
411 * The title of the content
414 public static final String TITLE = "title";
560 * The title of the content
563 public static final String TITLE = "title";
952 * @param title The name of the image
958 String title, String description) {
960 values.put(Images.Media.TITLE, title);
957 insertImage(ContentResolver cr, Bitmap source, String title, String description) argument
/frameworks/base/core/java/android/view/
H A DWindowManager.java1747 * The window title isn't kept in sync with what is displayed in the title bar, so we
1748 * separately track the currently shown title to provide to accessibility.
1811 public final void setTitle(CharSequence title) { argument
1812 if (null == title)
1813 title = "";
1815 mTitle = TextUtils.stringOrSpannedString(title);
2190 Log.d("Debug", "WindowManager.LayoutParams={title=" + mTitle + "}");
H A DWindow.java54 * window manager. It provides standard UI policies such as a background, title
64 /** Flag for the "no title" feature, turning off the title at the top
76 /** Flag for having an icon on the left side of the title bar */
78 /** Flag for having an icon on the right side of the title bar */
91 /** Flag for custom title. You cannot combine this feature with other title features. */
96 * replaces the title bar and provides an alternate location
685 // Embedded screens never have a title.
757 final StringBuilder title
1346 setTitle(CharSequence title) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DToolbar.java80 * <li><em>A title and subtitle.</em> The title should be a signpost for the Toolbar's current
83 * If an app uses a logo image it should strongly consider omitting a title and subtitle.</li>
100 * toolbars than on their application icon. The use of application icon plus title as a standard
289 final CharSequence title = a.getText(R.styleable.Toolbar_title);
290 if (!TextUtils.isEmpty(title)) {
291 setTitle(title);
362 * Sets the title margin.
364 * @param start the starting title margin in pixels
365 * @param top the top title margi
733 setTitle(CharSequence title) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java188 for (ActionTitle title : values()) {
189 if (title != HOME && action != null && action.equals(title.action)) {
190 return title;
229 * a default title resource
232 CharSequence title, Intent[] initialIntents,
234 onCreate(savedInstanceState, intent, title, 0, initialIntents, rList, alwaysUseOption);
238 CharSequence title, int defaultTitleRes, Intent[] initialIntents,
293 if (title == null) {
294 title
231 onCreate(Bundle savedInstanceState, Intent intent, CharSequence title, Intent[] initialIntents, List<ResolveInfo> rList, boolean alwaysUseOption) argument
237 onCreate(Bundle savedInstanceState, Intent intent, CharSequence title, int defaultTitleRes, Intent[] initialIntents, List<ResolveInfo> rList, boolean alwaysUseOption) argument
[all...]
H A DWindowDecorActionBar.java437 public void setTitle(CharSequence title) { argument
438 mDecorToolbar.setTitle(title);
442 public void setWindowTitle(CharSequence title) { argument
443 mDecorToolbar.setWindowTitle(title);
1077 public void setTitle(CharSequence title) { argument
1078 mContextView.setTitle(title);
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java477 * Set the action bar title. This will always replace or override window titles.
478 * @param title Title to set
482 public void setTitle(CharSequence title) { argument
484 setTitleImpl(title);
488 * Set the window title. A window title will always be replaced or overridden by a user title.
489 * @param title Title to set
493 public void setWindowTitle(CharSequence title) { argument
495 setTitleImpl(title);
499 setTitleImpl(CharSequence title) argument
[all...]
/frameworks/base/media/java/android/media/session/
H A DMediaSession.java445 * Set the title of the play queue. The UI should display this title along
449 * @param title The title of the play queue.
451 public void setQueueTitle(@Nullable CharSequence title) { argument
453 mBinder.setQueueTitle(title);
/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportProgressService.java462 String title = mContext.getString(R.string.bugreport_in_progress_title, info.id);
469 title = title + "\n" + watchPercentageText;
476 .setContentTitle(title)
477 .setTicker(title)
659 final String name, title, description;
932 final String subject = !TextUtils.isEmpty(info.title) ?
933 info.title : bugreportUri.getLastPathSegment();
1022 final String title = mContext.getString(R.string.bugreport_finished_title, info.id);
1027 .setContentTitle(title)
1323 updateBugreportInfo(int id, String name, String title, String description) argument
1604 String title; field in class:BugreportProgressService.BugreportInfo
[all...]
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionRecord.java812 public void setQueueTitle(CharSequence title) { argument
813 mQueueTitle = title;
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.cpp153 const char *title = "MOUNT INFO"; local
155 DurationReporter duration_reporter(title, NULL);
157 MYLOGD("%s: %d entries added to zip file\n", title, (int) mount_points.size());
160 static void dump_dev_files(const char *title, const char *driverpath, const char *filename) argument
176 dump_file(title, path);
353 static int dump_stat_from_fd(const char *title __unused, const char *path, int fd) {
642 static int _add_file_from_fd(const char *title, const char *path, int fd) { argument
1350 // In particular, DurationReport objects should be created passing 'title, NULL', so their
H A Dutils.cpp71 DurationReporter::DurationReporter(const char *title) : DurationReporter(title, stdout) {} argument
73 DurationReporter::DurationReporter(const char *title, FILE *out) { argument
74 title_ = title;
75 if (title) {
370 const char *title = "KERNEL LOG (dmesg)"; local
371 DurationReporter duration_reporter(title);
372 printf("------ %s ------\n", title);
399 char title[255]; local
402 snprintf(title, sizeo
407 _dump_file_from_fd(const char *title, const char *path, int fd) argument
472 dump_file(const char *title, const char *path) argument
511 dump_files(const char *title, const char *dir, bool (*skip)(const char *path), int (*dump_from_fd)(const char *title, const char *path, int fd)) argument
580 dump_file_from_fd(const char *title, const char *path, int fd) argument
641 run_command(const char *title, int timeout_seconds, const char *command, ...) argument
678 run_command_as_shell(const char *title, int timeout_seconds, const char *command, ...) argument
716 run_command_always(const char *title, RootMode root_mode, StdoutMode stdout_mode, int timeout_seconds, const char *args[]) argument
902 const char* title = "SYSTEM PROPERTIES"; local
[all...]
/frameworks/support/recommendation/src/android/support/app/recommendation/
H A DContentRecommendation.java373 * Returns the content title for this recommendation.
375 * @return A String containing the recommendation content title.
755 * Sets the content title for the recommendation.
757 * @param title A String containing the recommendation content title.
760 public Builder setTitle(String title) { argument
761 mBuilderTitle = checkNotNull(title);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBrowseFragment.java236 * Show or hide title view in {@link BrowseFragment} for fragments mapped to
238 * in control of showing/hiding title view.
243 * @param show Boolean indicating whether or not to show the title view.
654 private static final String ARG_TITLE = BrowseFragment.class.getCanonicalName() + ".title";
663 * @param title The title of the BrowseFragment.
669 public static Bundle createArgs(Bundle args, String title, int headersState) { argument
673 args.putString(ARG_TITLE, title);
H A DBrowseSupportFragment.java238 * Show or hide title view in {@link BrowseSupportFragment} for fragments mapped to
240 * in control of showing/hiding title view.
245 * @param show Boolean indicating whether or not to show the title view.
656 private static final String ARG_TITLE = BrowseSupportFragment.class.getCanonicalName() + ".title";
665 * @param title The title of the BrowseSupportFragment.
671 public static Bundle createArgs(Bundle args, String title, int headersState) { argument
675 args.putString(ARG_TITLE, title);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatDelegateImplV9.java322 // If a title was set before we installed the decor, propagate it now
323 CharSequence title = getTitle();
324 if (!TextUtils.isEmpty(title)) {
325 onTitleChanged(title);
358 // Don't allow an action bar if there is no title.
379 // If we're floating, inflate the dialog title decor
477 mTitleView = (TextView) subDecor.findViewById(R.id.title);
568 return false; // Ignore. No title dominates.
571 // Remove the action bar feature if we have no title. No title dominate
626 onTitleChanged(CharSequence title) argument
[all...]
H A DWindowDecorActionBar.java434 public void setTitle(CharSequence title) { argument
435 mDecorToolbar.setTitle(title);
439 public void setWindowTitle(CharSequence title) { argument
440 mDecorToolbar.setWindowTitle(title);
1059 public void setTitle(CharSequence title) { argument
1060 mContextView.setTitle(title);
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreference.java71 * @attr name android:title
426 * {@link android.R.id#title} and {@link android.R.id#summary}.
488 final TextView titleView = (TextView) holder.findViewById(android.R.id.title);
490 final CharSequence title = getTitle();
491 if (!TextUtils.isEmpty(title)) {
492 titleView.setText(title);
603 * Sets the title for this Preference with a CharSequence.
604 * This title will be placed into the ID
605 * {@link android.R.id#title} within the View bound by
608 * @param title Th
610 setTitle(CharSequence title) argument
[all...]

Completed in 543 milliseconds

123456789