Searched refs:title (Results 276 - 300 of 426) sorted by relevance

<<1112131415161718

/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/app/
H A DAppCompatDelegate.java146 * <p>This is enabled by default for some devices. The Action Bar replaces the title bar and
304 public abstract void setTitle(@Nullable CharSequence title); argument
H A DActionBar.java49 * A primary toolbar within the activity that may display the activity title, application-level
73 * in place of their standard title text.</p>
102 * and title text with an optional subtitle. Clicking any of these elements
115 * List navigation mode. Instead of static title text this mode
128 * Tab navigation mode. Instead of static title text this mode
185 * Show the activity title and subtitle, if present.
382 * Set the action bar's title. This will only be displayed if
385 * @param title Title to set
390 public abstract void setTitle(CharSequence title); argument
393 * Set the action bar's title
1103 setWindowTitle(CharSequence title) argument
[all...]
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);
1080 public void setTitle(CharSequence title) { argument
1081 mContextView.setTitle(title);
/frameworks/base/cmds/media/src/com/android/commands/media/
H A DMedia.java205 String mmString = metadata == null ? null : "title=" + metadata
217 public void onQueueTitleChanged(CharSequence title) throws RemoteException { argument
218 System.out.println("onQueueTitleChange " + title);
/frameworks/base/core/java/android/app/
H A DActionBar.java44 * A primary toolbar within the activity that may display the activity title, application-level
68 * the left, followed by the activity title. If your activity has an options menu, you can make
76 * in place of their standard title text.</p>
107 * and title text with an optional subtitle. Clicking any of these elements
120 * List navigation mode. Instead of static title text this mode
133 * Tab navigation mode. Instead of static title text this mode
190 * Show the activity title and subtitle, if present.
210 * Allow the title to wrap onto multiple lines if space is available
392 * Set the action bar's title. This will only be displayed if
395 * @param title Titl
400 setTitle(CharSequence title) argument
1100 setWindowTitle(CharSequence title) argument
[all...]
H A DDialog.java595 * Set the title text for this dialog's window.
597 * @param title The new text to display in the title.
599 public void setTitle(@Nullable CharSequence title) { argument
600 mWindow.setTitle(title);
601 mWindow.getAttributes().setTitle(title);
605 * Set the title text for this dialog's window. The text is retrieved
608 * @param titleId the title's text resource identifier
/frameworks/base/services/core/java/com/android/server/notification/
H A DCalendarTracker.java129 final String title = cursor.getString(2);
139 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/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DFrameworkActionBarWrapper.java95 public void setTitle(CharSequence title) { argument
96 mActionBar.setTitle(title);
/frameworks/native/cmds/dumpstate/tests/
H A Ddumpstate_test.cpp150 int RunCommand(const std::string& title, const std::vector<std::string>& full_command, argument
154 int status = ds.RunCommand(title, full_command, options);
161 int DumpFile(const std::string& title, const std::string& path) { argument
164 int status = ds.DumpFile(title, path);
880 int RunCommand(const std::string& title, const std::vector<std::string>& full_command, argument
883 int status = RunCommandToFd(fd, title, full_command, options);
892 int DumpFile(const std::string& title, const std::string& path) { argument
894 int status = DumpFileToFd(fd, title, path);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccSlot.java304 String title = (isAdded) ? r.getString(R.string.sim_added_title) :
311 .setTitle(title)
/frameworks/support/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/model/
H A DMusicProvider.java55 private static final String JSON_TITLE = "title";
112 * Very basic implementation of a search that filter music tracks which title containing
253 String title = json.getString(JSON_TITLE);
288 .putString(MediaMetadataCompat.METADATA_KEY_TITLE, title)
/frameworks/support/leanback/src/main/java/androidx/leanback/media/
H A DMediaPlayerGlue.java101 * Sets the media title.
103 public void setTitle(String title) { argument
104 this.mTitle = title;
/frameworks/support/mediarouter/src/main/java/androidx/mediarouter/app/
H A DMediaRouteChooserDialog.java172 public void setTitle(CharSequence title) { argument
173 mTitleView.setText(title);
/frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/androidx/room/integration/kotlintestapp/dao/
H A DBooksDao.kt125 @Query("UPDATE book SET title = :title WHERE bookId = :bookId")
126 fun updateBookTitle(bookId: String, title: String?)
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/model/
H A DMusicProvider.java55 private static final String JSON_TITLE = "title";
112 * Very basic implementation of a search that filter music tracks which title containing
253 String title = json.getString(JSON_TITLE);
288 .putString(MediaMetadataCompat.METADATA_KEY_TITLE, title)
/frameworks/base/core/java/com/android/internal/app/
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);
1068 public void setTitle(CharSequence title) { argument
1069 mContextView.setTitle(title);
/frameworks/support/media-widget/src/main/java/androidx/media/widget/impl/
H A DVideoView2ImplBase.java933 // Save file name as title since the file may not have a title Metadata.
1164 // Get and set duration and title values as MediaMetadata for MediaControlView2
1166 String title = mRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_TITLE);
1167 if (title != null) {
1168 mTitle = title;
1208 String title = mRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_TITLE);
1209 if (title != null) {
1210 mMusicTitleText = title;
1222 // Send title an
[all...]
/frameworks/support/media-widget/src/main/java/androidx/media/widget/impl_with_mp1/
H A DVideoView2ImplBaseWithMp1.java874 // Save file name as title since the file may not have a title Metadata.
1094 // Get and set duration and title values as MediaMetadata for MediaControlView2
1096 String title = mRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_TITLE);
1097 if (title != null) {
1098 mTitle = title;
1138 String title = mRetriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_TITLE);
1139 if (title != null) {
1140 mMusicTitleText = title;
1152 // Send title an
[all...]
/frameworks/base/
H A DAndroid.mk636 -title "Android SDK" \
672 -title "Android SDK" \
716 -title "Android System SDK" \
791 -title "Android SDK - Including system APIs." \
939 -title "Android SDK - Including hidden APIs."
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/drawer/
H A DTileUtilsTest.java246 URI_GET_SUMMARY, "my title", 0);
257 assertThat(outTiles.get(0).title).isEqualTo("my title");
274 .thenReturn("my localized title");
281 assertThat(outTiles.get(0).title).isEqualTo("my localized title");
511 String iconUri, String summaryUri, String title, int titleResId) {
533 } else if (title != null) {
534 info.activityInfo.metaData.putString(TileUtils.META_DATA_PREFERENCE_TITLE, title);
510 newInfo(boolean systemApp, String category, String keyHint, String iconUri, String summaryUri, String title, int titleResId) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewHeader.java254 mTitleView = findViewById(R.id.title);
265 private void updateLayoutParams(View icon, View title, View secondaryButton, View button) { argument
277 title.setLayoutParams(lp);
459 if (!mTitleView.getText().toString().equals(t.title)) {
460 mTitleView.setText(t.title);
/frameworks/base/media/java/android/media/session/
H A DMediaController.java258 * Get the queue title for this session.
627 * Override to handle changes to the queue title.
629 * @param title The title that should be displayed along with the play queue such as
630 * "Now Playing". May be null if there is no such title.
632 public void onQueueTitleChanged(@Nullable CharSequence title) { argument
1110 public void onQueueTitleChanged(CharSequence title) { argument
1113 controller.postMessage(MSG_UPDATE_QUEUE_TITLE, title, null);
/frameworks/base/services/core/java/com/android/server/storage/
H A DDeviceStorageMonitorService.java468 final CharSequence title = context.getText(
486 .setTicker(title)
489 .setContentTitle(title)
/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 2325 milliseconds

<<1112131415161718