Searched defs:title (Results 51 - 75 of 91) sorted by relevance

1234

/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DActionMenuItemView.java157 public void setTitle(CharSequence title) { argument
158 mTitle = title;
H A DActionMenuItem.java63 CharSequence title) {
69 mTitle = title;
194 public MenuItem setTitle(CharSequence title) { argument
195 mTitle = title;
199 public MenuItem setTitle(int title) { argument
200 mTitle = mContext.getResources().getString(title);
204 public MenuItem setTitleCondensed(CharSequence title) { argument
205 mTitleCondensed = title;
62 ActionMenuItem(Context context, int group, int id, int categoryOrder, int ordering, CharSequence title) argument
H A DMenuItemWrapperICS.java73 public MenuItem setTitle(CharSequence title) { argument
74 mWrappedObject.setTitle(title);
79 public MenuItem setTitle(int title) { argument
80 mWrappedObject.setTitle(title);
90 public MenuItem setTitleCondensed(CharSequence title) { argument
91 mWrappedObject.setTitleCondensed(title);
H A DMenuBuilder.java124 * Header title for menu types that have a header (context and submenus)
399 private MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { argument
403 ordering, title, mDefaultShowAsAction);
417 public MenuItem add(CharSequence title) { argument
418 return addInternal(0, 0, 0, title);
427 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { argument
428 return addInternal(group, id, categoryOrder, title);
432 public MenuItem add(int group, int id, int categoryOrder, int title) { argument
433 return addInternal(group, id, categoryOrder, mResources.getString(title));
437 public SubMenu addSubMenu(CharSequence title) { argument
447 addSubMenu(int group, int id, int categoryOrder, CharSequence title) argument
456 addSubMenu(int group, int id, int categoryOrder, int title) argument
1152 setHeaderInternal(final int titleRes, final CharSequence title, final int iconRes, final Drawable icon, final View view) argument
1190 setHeaderTitleInt(CharSequence title) argument
[all...]
H A DMenuItemImpl.java121 * @param title The text to display for the item.
124 CharSequence title, int showAsAction) {
143 mTitle = title;
362 * Gets the title for a particular {@link MenuView.ItemView}
364 * @param itemView The ItemView that is receiving the title
365 * @return Either the title or condensed title based on what the ItemView prefers
374 public MenuItem setTitle(CharSequence title) { argument
375 mTitle = title;
380 mSubMenu.setHeaderTitle(title);
123 MenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering, CharSequence title, int showAsAction) argument
387 setTitle(int title) argument
397 setTitleCondensed(CharSequence title) argument
[all...]
/frameworks/base/core/java/android/app/
H A DAlertDialog.java173 public void setTitle(CharSequence title) { argument
174 super.setTitle(title);
175 mAlert.setTitle(title);
393 * Set the title using the given resource id.
403 * Set the title displayed in the {@link Dialog}.
407 public Builder setTitle(CharSequence title) { argument
408 P.mTitle = title;
413 * Set the title using the custom view {@code customTitleView}. The
415 * sufficient for most titles, but this is provided if the title needs
416 * more customization. Using this will replace the title an
[all...]
H A DActionBar.java32 * A window feature at the top of the activity that may display the activity title, navigation
41 * the left, followed by the activity title. If your activity has an options menu, you can make
62 * and title text with an optional subtitle. Clicking any of these elements
69 * List navigation mode. Instead of static title text this mode
76 * Tab navigation mode. Instead of static title text this mode
115 * Show the activity title and subtitle, if present.
135 * Allow the title to wrap onto multiple lines if space is available
293 * Set the action bar's title. This will only be displayed if
296 * @param title Title to set
301 public abstract void setTitle(CharSequence title); argument
[all...]
H A DDialog.java515 * Set the title text for this dialog's window.
517 * @param title The new text to display in the title.
519 public void setTitle(CharSequence title) { argument
520 mWindow.setTitle(title);
521 mWindow.getAttributes().setTitle(title);
525 * Set the title text for this dialog's window. The text is retrieved
528 * @param titleId the title's text resource identifier
H A DDownloadManager.java69 * The client-supplied title for this download. This will be displayed in system notifications.
585 * Set the title of this download, to be displayed in notifications (if enabled). If no
586 * title is given, a default one will be assigned based on the download filename, once the
590 public Request setTitle(CharSequence title) { argument
591 mTitle = title;
1182 * @param title the title that would appear for this file in Downloads App.
1196 public long addCompletedDownload(String title, String description, argument
1199 return addCompletedDownload(title, description, isMediaScannerScannable, mimeType, path,
1204 public long addCompletedDownload(String title, Strin argument
[all...]
H A DInstrumentation.java1021 * @param title The title, typically retrieved from the ActivityInfo record
1033 CharSequence title, Activity parent, String id,
1039 info, title, parent, id,
1031 newActivity(Class<?> clazz, Context context, IBinder token, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, Object lastNonConfigurationInstance) argument
H A DNotification.java444 * {@link #extras} key: this is the title of the notification,
447 public static final String EXTRA_TITLE = "android.title";
450 * {@link #extras} key: this is the title of the notification when shown in expanded form,
597 public CharSequence title; field in class:Notification.Action
607 title = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
615 public Action(int icon, CharSequence title, PendingIntent intent) { argument
617 this.title = title;
625 this.title,
636 TextUtils.writeToParcel(title, ou
1280 setContentTitle(CharSequence title) argument
1601 addAction(int icon, CharSequence title, PendingIntent intent) argument
1915 internalSetBigContentTitle(CharSequence title) argument
2035 setBigContentTitle(CharSequence title) argument
2129 setBigContentTitle(CharSequence title) argument
2226 setBigContentTitle(CharSequence title) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java121 CharSequence title, Intent[] initialIntents, List<ResolveInfo> rList,
137 ap.mTitle = title;
120 onCreate(Bundle savedInstanceState, Intent intent, CharSequence title, Intent[] initialIntents, List<ResolveInfo> rList, boolean alwaysUseOption) argument
H A DAlertController.java233 /* We use a custom title so never request a window title */
244 public void setTitle(CharSequence title) { argument
245 mTitle = title;
247 mTitleView.setText(title);
425 /* Only display the divider if we have a title and a
449 // Add the custom title view directly to the topPanel layout
455 // Hide the title template
463 /* Display the title if a title i
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenuItem.java60 CharSequence title) {
66 mTitle = title;
191 public MenuItem setTitle(CharSequence title) { argument
192 mTitle = title;
196 public MenuItem setTitle(int title) { argument
197 mTitle = mContext.getResources().getString(title);
201 public MenuItem setTitleCondensed(CharSequence title) { argument
202 mTitleCondensed = title;
59 ActionMenuItem(Context context, int group, int id, int categoryOrder, int ordering, CharSequence title) argument
H A DMenuBuilder.java125 /** Header title for menu types that have a header (context and submenus) */
386 private MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { argument
390 ordering, title, mDefaultShowAsAction);
403 public MenuItem add(CharSequence title) { argument
404 return addInternal(0, 0, 0, title);
411 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { argument
412 return addInternal(group, id, categoryOrder, title);
415 public MenuItem add(int group, int id, int categoryOrder, int title) { argument
416 return addInternal(group, id, categoryOrder, mResources.getString(title));
419 public SubMenu addSubMenu(CharSequence title) { argument
427 addSubMenu(int group, int id, int categoryOrder, CharSequence title) argument
435 addSubMenu(int group, int id, int categoryOrder, int title) argument
1096 setHeaderInternal(final int titleRes, final CharSequence title, final int iconRes, final Drawable icon, final View view) argument
1134 setHeaderTitleInt(CharSequence title) argument
[all...]
H A DMenuItemImpl.java113 * @param title The text to display for the item.
116 CharSequence title, int showAsAction) {
137 mTitle = title;
337 * Gets the title for a particular {@link ItemView}
339 * @param itemView The ItemView that is receiving the title
340 * @return Either the title or condensed title based on what the ItemView
349 public MenuItem setTitle(CharSequence title) { argument
350 mTitle = title;
355 mSubMenu.setHeaderTitle(title);
115 MenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering, CharSequence title, int showAsAction) argument
361 setTitle(int title) argument
369 setTitleCondensed(CharSequence title) argument
[all...]
/frameworks/native/cmds/dumpstate/
H A Dutils.c204 char title[255]; local
207 sprintf(title, "SHOW MAP %d (%s)", pid, name);
209 run_command(title, 10, SU_PATH, "root", "showmap", arg, NULL);
213 int dump_file(const char *title, const char* path) { argument
218 if (title) printf("------ %s (%s) ------\n", title, path);
220 if (title) printf("\n");
224 if (title) printf("------ %s (%s", title, path);
226 if (title) {
254 run_command(const char *title, int timeout_seconds, const char *command, ...) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java390 * Set the title that will be used for the activity chooser for this share.
392 * @param title Title string
395 public IntentBuilder setChooserTitle(CharSequence title) { argument
396 mChooserTitle = title;
401 * Set the title that will be used for the activity chooser for this share.
403 * @param resId Resource ID of the title string to use
935 * Get the human-readable label (title) of the calling application if
H A DNotificationCompat.java123 jbBuilder.addAction(action.icon, action.title, action.actionIntent);
280 * Set the title (first row) of the notification, in a standard notification.
282 public Builder setContentTitle(CharSequence title) { argument
283 mContentTitle = title;
556 * @param title Text describing the action.
559 public Builder addAction(int icon, CharSequence title, PendingIntent intent) { argument
560 mActions.add(new Action(icon, title, intent));
667 public BigPictureStyle setBigContentTitle(CharSequence title) { argument
668 mBigContentTitle = title;
734 public BigTextStyle setBigContentTitle(CharSequence title) { argument
796 setBigContentTitle(CharSequence title) argument
821 public CharSequence title; field in class:NotificationCompat.Action
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarActivityDelegateBase.java233 // A title was set before we've install the decor so set it now.
265 public void onTitleChanged(CharSequence title) { argument
267 mActionBarView.setWindowTitle(title);
269 mTitleToSet = title;
H A DActionBarImplICS.java133 public void setTitle(CharSequence title) { argument
134 mActionBar.setTitle(title);
H A DActionBar.java35 * A window feature at the top of the activity that may display the activity title, navigation
48 * the left, followed by the activity title. If your activity has an options menu, you can make
73 * Standard navigation mode. Consists of either a logo or icon and title text with an optional
80 * List navigation mode. Instead of static title text this mode presents a list menu for
86 * Tab navigation mode. Instead of static title text this mode presents a series of tabs for
125 * Show the activity title and subtitle, if present.
281 * Set the action bar's title. This will only be displayed if {@link #DISPLAY_SHOW_TITLE} is
284 * @param title Title to set
288 public abstract void setTitle(CharSequence title); argument
291 * Set the action bar's title
[all...]
/frameworks/base/core/java/android/preference/
H A DPreferenceActivity.java154 * this extra can also be specify to supply the title to be shown for
161 * this extra can also be specify to supply the short title to be shown for
257 TextView title; field in class:PreferenceActivity.HeaderAdapter.HeaderViewHolder
278 holder.title = (TextView) view.findViewById(com.android.internal.R.id.title);
289 holder.title.setText(header.getTitle(getContext().getResources()));
322 * Resource ID of title of the header that is shown to the user.
331 public CharSequence title; field in class:PreferenceActivity.Header
346 * Resource ID of optional text to show as the title in the bread crumb.
352 * Optional text to show as the title i
1106 showBreadCrumbs(CharSequence title, CharSequence shortTitle) argument
1147 setParentTitle(CharSequence title, CharSequence shortTitle, OnClickListener listener) argument
[all...]
H A DPreference.java394 * {@link android.R.id#title} and {@link android.R.id#summary}.
510 com.android.internal.R.id.title);
512 final CharSequence title = getTitle();
513 if (!TextUtils.isEmpty(title)) {
514 titleView.setText(title);
599 * Sets the title for this Preference with a CharSequence.
600 * This title will be placed into the ID
601 * {@link android.R.id#title} within the View created by
604 * @param title The title fo
606 setTitle(CharSequence title) argument
[all...]
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewContentsClientAdapter.java500 public void onReceivedTitle(String title) { argument
504 mWebChromeClient.onReceivedTitle(mWebView, title);

Completed in 717 milliseconds

1234