Searched defs:title (Results 26 - 50 of 91) sorted by relevance

1234

/frameworks/base/core/java/android/content/
H A DRestrictionEntry.java84 /** The user-visible title of the restriction. */
85 private String title; field in class:RestrictionEntry
282 * Sets the user-visible description of the entry, as a possible sub-text for the title.
300 * Returns the user-visible title for the entry, if any.
301 * @return the user-visible title for the entry, null if none was set earlier.
304 return title;
308 * Sets the user-visible title for the entry.
309 * @param title the user-visible title for the entry.
311 public void setTitle(String title) { argument
[all...]
/frameworks/base/core/java/android/view/
H A DMenu.java38 * {@link MenuItem#setTitleCondensed(CharSequence) condensed title}. The
136 * Add a new item to the menu. This item displays the given title for its
139 * @param title The text to display for the item.
142 public MenuItem add(CharSequence title); argument
145 * Add a new item to the menu. This item displays the given title for its
148 * @param titleRes Resource identifier of title string.
154 * Add a new item to the menu. This item displays the given title for its
165 * @param title The text to display for the item.
168 public MenuItem add(int groupId, int itemId, int order, CharSequence title); argument
182 * @param titleRes Resource identifier of title strin
195 addSubMenu(final CharSequence title) argument
227 addSubMenu(final int groupId, final int itemId, int order, final CharSequence title) argument
[all...]
H A DMenuItem.java149 * Change the title associated with this item.
151 * @param title The new text to be displayed.
154 public MenuItem setTitle(CharSequence title); argument
157 * Change the title associated with this item.
159 * Some menu types do not sufficient space to show the full title, and
160 * instead a condensed title is preferred. See {@link Menu} for more
163 * @param title The resource id of the new text to be displayed.
168 public MenuItem setTitle(int title); argument
171 * Retrieve the current title of the item.
173 * @return The title
185 setTitleCondensed(CharSequence title) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebChromeClient.java36 * Notify the host application of a change in the document title.
38 * @param title A String containing the new title of the document.
40 public void onReceivedTitle(WebView view, String title) {} argument
/frameworks/base/core/java/com/android/internal/view/
H A DStandaloneActionMode.java55 public void setTitle(CharSequence title) { argument
56 mContextView.setTitle(title);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenu.java51 public MenuItem add(CharSequence title) { argument
52 return add(0, 0, 0, title);
63 public MenuItem add(int groupId, int itemId, int order, CharSequence title) { argument
65 groupId, itemId, 0, order, title);
100 public SubMenu addSubMenu(CharSequence title) { argument
111 CharSequence title) {
110 addSubMenu(int groupId, int itemId, int order, CharSequence title) argument
H A DActionMenuItemView.java182 public void setTitle(CharSequence title) { argument
183 mTitle = title;
H A DIconMenuItemView.java90 * Initializes with the provided title and icon
91 * @param title The title of this item
94 void initialize(CharSequence title, Drawable icon) { argument
102 setTitle(title);
134 public void setTitle(CharSequence title) { argument
138 * Don't set the title directly since it will replace the
139 * shortcut+title being shown. Instead, re-set the shortcut caption
140 * mode so the new title is shown.
144 } else if (title !
[all...]
H A DListMenuItemView.java85 mTitleView = (TextView) findViewById(com.android.internal.R.id.title);
111 public void setTitle(CharSequence title) { argument
112 if (title != null) {
113 mTitleView.setText(title);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DRootInfo.java51 public String title; field in class:RootInfo
72 title = null;
92 title = DurableUtils.readNullableString(in);
111 DurableUtils.writeNullableString(out, title);
148 root.title = getCursorString(cursor, Root.COLUMN_TITLE);
203 return "Root{authority=" + authority + ", rootId=" + rootId + ", title=" + title + "}";
230 return !TextUtils.isEmpty(summary) ? summary : title;
/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/tests/BrowserPowerTest/src/com/android/browserpowertest/
H A DPowerTestActivity.java240 public void onReceivedTitle(WebView view, String title) { argument
241 PowerTestActivity.this.setTitle(title);
/frameworks/ex/carousel/test/src/com/android/carouseltest/
H A DCarouselTestActivity.java128 void postMessage(final CharSequence title, final CharSequence msg) { argument
132 .setTitle(title)
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarActivityDelegate.java142 abstract void onTitleChanged(CharSequence title); argument
H A DActionBarActivity.java143 protected void onTitleChanged(CharSequence title, int color) { argument
144 super.onTitleChanged(title, color);
145 mImpl.onTitleChanged(title);
257 * Sets the visibility of the progress bar in the title.
262 * @param visible Whether to show the progress bars in the title.
271 * Sets the visibility of the indeterminate progress bar in the title.
276 * @param visible Whether to show the progress bars in the title.
285 * Sets whether the horizontal progress bar in the title should be indeterminate (the
300 * Sets the progress for the progress bars in the title.
H A DActionBarActivityDelegateICS.java169 public void onTitleChanged(CharSequence title) { argument
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
H A DActionModeWrapper.java65 public void setTitle(CharSequence title) { argument
66 mWrappedObject.setTitle(title);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DListMenuItemView.java90 mTitleView = (TextView) findViewById(R.id.title);
116 public void setTitle(CharSequence title) { argument
117 if (title != null) {
118 mTitleView.setText(title);
H A DMenuWrapperICS.java34 public MenuItem add(CharSequence title) { argument
35 return getMenuItemWrapper(mWrappedObject.add(title));
44 public MenuItem add(int groupId, int itemId, int order, CharSequence title) { argument
45 return getMenuItemWrapper(mWrappedObject.add(groupId, itemId, order, title));
54 public SubMenu addSubMenu(CharSequence title) { argument
55 return getSubMenuWrapper(mWrappedObject.addSubMenu(title));
64 public SubMenu addSubMenu(int groupId, int itemId, int order, CharSequence title) { argument
65 return getSubMenuWrapper(mWrappedObject.addSubMenu(groupId, itemId, order, title));
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarContextView.java148 public void setTitle(CharSequence title) { argument
149 mTitle = title;
/frameworks/base/core/java/android/app/
H A DLauncherActivity.java382 public void setTitle(CharSequence title) { argument
383 super.setTitle(title);
/frameworks/base/core/java/android/provider/
H A DBrowser.java151 * Open an activity to save a bookmark. Launch with a title
155 * @param title Title for the bookmark. Can be null or empty string.
159 String title,
162 i.putExtra("title", title);
206 * @param chooserDialogTitle The title of the dialog that allows the user
605 * The user visible title of the bookmark or history item.
608 public static final String TITLE = "title";
158 saveBookmark(Context c, String title, String url) argument
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarContextView.java158 public void setTitle(CharSequence title) { argument
159 mTitle = title;
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DExternalStorageProvider.java74 public String title; field in class:ExternalStorageProvider.RootInfo
148 root.title = getContext().getString(R.string.root_internal_storage);
150 root.title = volume.getUserLabel();
278 row.add(Root.COLUMN_TITLE, root.title);
/frameworks/base/services/java/com/android/server/
H A DIntentResolver.java97 boolean dumpMap(PrintWriter out, String titlePrefix, String title, argument
113 if (title != null) {
114 out.print(titlePrefix); out.println(title);
115 title = null;
134 public boolean dump(PrintWriter out, String title, String prefix, String packageName, argument
138 String curPrefix = title + "\n" + prefix;

Completed in 5436 milliseconds

1234