Searched refs:title (Results 201 - 225 of 375) sorted by relevance

1234567891011>>

/frameworks/base/packages/SystemUI/src/com/android/systemui/tv/pip/
H A DPipOnboardingActivity.java61 loadAnimator(R.id.title, R.anim.tv_pip_onboarding_title_enter_animation),
/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java216 boolean dumpMap(PrintWriter out, String titlePrefix, String title, argument
244 if (title != null) {
245 out.print(titlePrefix); out.println(title);
246 title = null;
260 if (title != null) {
261 out.print(titlePrefix); out.println(title);
262 title = null;
282 public boolean dump(PrintWriter out, String title, String prefix, String packageName, argument
286 String curPrefix = title + "\n" + prefix;
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
H A DSetupWizardLayout.java215 public void setHeaderText(int title) { argument
218 titleView.setText(title);
222 public void setHeaderText(CharSequence title) { argument
225 titleView.setText(title);
/frameworks/base/cmds/media/src/com/android/commands/media/
H A DMedia.java199 String mmString = metadata == null ? null : "title=" + metadata
211 public void onQueueTitleChanged(CharSequence title) throws RemoteException { argument
212 System.out.println("onQueueTitleChange " + title);
/frameworks/base/core/java/android/content/
H A DRestrictionEntry.java111 /** The user-visible title of the restriction. */
421 * Sets the user-visible description of the entry, as a possible sub-text for the title.
439 * Returns the user-visible title for the entry, if any.
440 * @return the user-visible title for the entry, null if none was set earlier.
447 * Sets the user-visible title for the entry.
448 * @param title the user-visible title for the entry.
450 public void setTitle(String title) { argument
451 this.mTitle = title;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/views/
H A DRecentsTvView.java147 ssp.startActivityFromRecents(getContext(), task.key, task.title, null);
171 ssp.startActivityFromRecents(getContext(), task.key, task.title, null);
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
H A DNetworkActivity.java219 String title = null;
253 htmlString.append("'>" + entry.title + "</a></p>");
/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/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/browser/
H A DMusicProvider.java50 private static String TITLE = "title";
97 String title = music.getString(TITLE);
114 mMusicList.add(new MusicTrack(title, album, artist, genre, source,
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DFrameworkActionBar.java117 protected void setTitle(CharSequence title) { argument
118 mActionBar.setTitle(title);
/frameworks/support/design/src/android/support/design/internal/
H A DNavigationMenuItemView.java183 public void setTitle(CharSequence title) { argument
184 mTextView.setText(title);
/frameworks/support/design/tests/src/android/support/design/testutils/
H A DTestUtilsActions.java111 * Sets title on the {@link CollapsingToolbarLayout}.
113 public static ViewAction setTitle(final CharSequence title) { argument
122 return "set toolbar title";
131 collapsingToolbarLayout.setTitle(title);
/frameworks/support/frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
H A DTabLayoutPreselectedUsage.java129 public void addTab(String title) { argument
130 mCheeses.add(title);
H A DTabLayoutUsage.java141 public void addTab(String title) { argument
142 mCheeses.add(title);
/frameworks/support/media-compat/api21/android/support/v4/media/session/
H A DMediaSessionCompatApi21.java127 public static void setQueueTitle(Object sessionObj, CharSequence title) { argument
128 ((MediaSession) sessionObj).setQueueTitle(title);
/frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
H A DTabLayoutPreselectedUsage.java129 public void addTab(String title) { argument
130 mCheeses.add(title);
H A DTabLayoutUsage.java141 public void addTab(String title) { argument
142 mCheeses.add(title);
/frameworks/support/v7/appcompat/src/android/support/v7/view/
H A DSupportActionModeWrapper.java66 public void setTitle(CharSequence title) { argument
67 mWrappedObject.setTitle(title);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DSearchFragment.java74 private static final String ARG_TITLE = ARG_PREFIX + ".title";
252 public static Bundle createArgs(Bundle args, String query, String title) { argument
257 args.putString(ARG_TITLE, title);
474 * Sets the title string to be be shown in an empty search bar. The title
475 * may be placed in a call-to-action, such as "Search <i>title</i>" or
476 * "Speak to search <i>title</i>".
478 public void setTitle(String title) { argument
479 mTitle = title;
481 mSearchBar.setTitle(title);
[all...]
H A DSearchSupportFragment.java76 private static final String ARG_TITLE = ARG_PREFIX + ".title";
254 public static Bundle createArgs(Bundle args, String query, String title) { argument
259 args.putString(ARG_TITLE, title);
476 * Sets the title string to be be shown in an empty search bar. The title
477 * may be placed in a call-to-action, such as "Search <i>title</i>" or
478 * "Speak to search <i>title</i>".
480 public void setTitle(String title) { argument
481 mTitle = title;
483 mSearchBar.setTitle(title);
[all...]
/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/packages/SystemUI/src/com/android/systemui/statusbar/
H A DStatusBarIconView.java345 CharSequence title = n.extras.getCharSequence(Notification.EXTRA_TITLE);
349 : !TextUtils.isEmpty(title) ? 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/services/core/java/com/android/server/storage/
H A DDeviceStorageMonitorService.java470 CharSequence title = context.getText(
479 .setTicker(title)
482 .setContentTitle(title)
/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
478 * Returns the title to use for this file selector, or null. If null a default
479 * title should be used.

Completed in 3219 milliseconds

1234567891011>>