Searched refs:title (Results 26 - 50 of 375) sorted by relevance

1234567891011>>

/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DActionBarInterface.java38 public void setTitle(@Nullable CharSequence title); argument
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentAlertDialogSupport.java77 public static MyAlertDialogFragment newInstance(int title) { argument
80 args.putInt("title", title);
87 int title = getArguments().getInt("title");
91 .setTitle(title)
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentAlertDialogSupport.java77 public static MyAlertDialogFragment newInstance(int title) { argument
80 args.putInt("title", title);
87 int title = getArguments().getInt("title");
91 .setTitle(title)
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/support/
H A DDesignLibUtil.java44 * Tries to set the title of a view. This is used to set the title in a
49 public static void setTitle(@NonNull View view, @Nullable String title) { argument
50 if (title == null) {
54 invoke(getMethod(view.getClass(), "setTitle", CharSequence.class), view, title);
57 "Error occurred while trying to set title.", e);
/frameworks/base/core/java/android/view/
H A DWindowInfo.java47 public CharSequence title; field in class:WindowInfo
70 window.title = other.title;
102 parcel.writeCharSequence(title);
117 builder.append("title=").append(title);
137 title = parcel.readCharSequence();
H A DMenuItem.java152 * Change the title associated with this item.
154 * @param title The new text to be displayed.
157 public MenuItem setTitle(CharSequence title); argument
160 * Change the title associated with this item.
162 * Some menu types do not sufficient space to show the full title, and
163 * instead a condensed title is preferred. See {@link Menu} for more
166 * @param title The resource id of the new text to be displayed.
171 public MenuItem setTitle(@StringRes int title); argument
174 * Retrieve the current title of the item.
176 * @return The title
188 setTitleCondensed(CharSequence title) argument
[all...]
H A DContextMenu.java43 * Sets the context menu header's title to the title given in <var>titleRes</var>
46 * @param titleRes The string resource identifier used for the title.
52 * Sets the context menu header's title to the title given in <var>title</var>.
54 * @param title The character sequence used for the title.
57 public ContextMenu setHeaderTitle(CharSequence title); argument
79 * <var>view</var>. This replaces the header title an
[all...]
H A DSubMenu.java37 * Sets the submenu header's title to the title given in <var>titleRes</var>
40 * @param titleRes The string resource identifier used for the title.
46 * Sets the submenu header's title to the title given in <var>title</var>.
48 * @param title The character sequence used for the title.
51 public SubMenu setHeaderTitle(CharSequence title); argument
73 * <var>view</var>. This replaces the header title an
[all...]
/frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/
H A DBatteryWaster.java167 String title = action;
168 int index = title.lastIndexOf('.');
170 title = title.substring(index + 1);
174 log(title + ": level=" + level);
176 log(title);
/frameworks/base/media/java/android/media/
H A DRingtone.java193 * Returns a human-presentable title for ringtone. Looks in media
210 String title = null;
221 title = context
246 title = mRemotePlayer.getTitle(uri);
256 if (title == null) {
257 title = uri.getLastPathSegment();
262 if (title == null) {
263 title = context.getString(com.android.internal.R.string.ringtone_unknown);
265 if (title == null) {
266 title
456 setTitle(String title) argument
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
H A DDashboardCategory.java31 public CharSequence title; field in class:DashboardCategory
84 TextUtils.writeToParcel(title, dest, flags);
98 title = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/page/
H A DCustomTitleView.java29 * Custom title view to be used in {@link android.support.v17.leanback.app.BrowseFragment}.
67 public void setTitle(CharSequence title) { argument
68 if (title != null) {
69 mTitleView.setText(title);
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/page/
H A DCustomTitleView.java29 * Custom title view to be used in {@link android.support.v17.leanback.app.BrowseFragment}.
67 public void setTitle(CharSequence title) { argument
68 if (title != null) {
69 mTitleView.setText(title);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuView.java67 * Sets the title of the item view.
68 * @param title The title to set.
70 public void setTitle(CharSequence title); argument
107 * Whether this item view prefers displaying the condensed title rather
108 * than the normal title. If a condensed title is not available, the
109 * normal title will be used.
112 * title.
H A DContextMenuBuilder.java54 public ContextMenu setHeaderTitle(CharSequence title) { argument
55 return (ContextMenu) super.setHeaderTitleInt(title);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DMenu.java34 public String title; field in class:Menu
45 title = null;
58 title = in.readString();
82 dest.writeString(title);
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
H A DMenuView.java68 * Sets the title of the item view.
69 * @param title The title to set.
71 void setTitle(CharSequence title); argument
108 * Whether this item view prefers displaying the condensed title rather
109 * than the normal title. If a condensed title is not available, the
110 * normal title will be used.
113 * title.
H A DActionMenuItem.java68 CharSequence title) {
74 mTitle = title;
199 public MenuItem setTitle(CharSequence title) { argument
200 mTitle = title;
204 public MenuItem setTitle(int title) { argument
205 mTitle = mContext.getResources().getString(title);
209 public MenuItem setTitleCondensed(CharSequence title) { argument
210 mTitleCondensed = title;
67 ActionMenuItem(Context context, int group, int id, int categoryOrder, int ordering, CharSequence title) argument
/frameworks/native/cmds/dumpstate/
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
903 const char* title = "SYSTEM PROPERTIES"; local
[all...]
/frameworks/base/core/java/android/webkit/
H A DJsDialogHelper.java96 String title, displayMessage;
99 title = context.getString(com.android.internal.R.string.js_dialog_before_unload_title);
105 title = getJsDialogTitle(context);
111 builder.setTitle(title);
161 String title = mUrl;
164 title = context.getString(com.android.internal.R.string.js_dialog_title_default);
169 title = context.getString(com.android.internal.R.string.js_dialog_title,
172 // do nothing. just use the url as the title
175 return title;
/frameworks/base/media/java/android/media/session/
H A DISessionControllerCallback.aidl36 void onQueueTitleChanged(CharSequence title);
/frameworks/base/services/core/java/com/android/server/policy/
H A DShortcutManager.java137 final String title;
165 title = info.loadLabel(packageManager).toString();
168 title = "";
175 ShortcutInfo shortcut = new ShortcutInfo(title, intent);
190 public final String title; field in class:ShortcutManager.ShortcutInfo
193 public ShortcutInfo(String title, Intent intent) { argument
194 this.title = title;
/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/browser/
H A DMusicTrack.java39 * @param title
49 public MusicTrack(String title, String album, String artist, String genre, String source, argument
51 this.mTitle = title;
/frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
H A DActionBarWrapper.java52 public void setTitle(CharSequence title) { argument
53 mActionBar.setTitle(title);
/frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
H A DActionBarWrapper.java53 public void setTitle(CharSequence title) { argument
54 mActionBar.setTitle(title);

Completed in 795 milliseconds

1234567891011>>