Searched defs:title (Results 1 - 25 of 91) sorted by relevance

1234

/frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
H A DInputMethodSettingsInterface.java27 * Sets the title for the input method settings category with a resource ID.
28 * @param resId The resource ID of the title.
33 * Sets the title for the input method settings category with a CharSequence.
34 * @param title The title for this preference.
36 public void setInputMethodSettingsCategoryTitle(CharSequence title); argument
39 * Sets the title for the input method enabler preference for launching subtype enabler with a
41 * @param resId The resource ID of the title.
46 * Sets the title for the input method enabler preference for launching subtype enabler with a
48 * @param title Th
50 setSubtypeEnablerTitle(CharSequence title) argument
[all...]
H A DInputMethodSettingsActivity.java50 public void setInputMethodSettingsCategoryTitle(CharSequence title) { argument
51 mSettings.setInputMethodSettingsCategoryTitle(title);
66 public void setSubtypeEnablerTitle(CharSequence title) { argument
67 mSettings.setSubtypeEnablerTitle(title);
H A DInputMethodSettingsFragment.java51 public void setInputMethodSettingsCategoryTitle(CharSequence title) { argument
52 mSettings.setInputMethodSettingsCategoryTitle(title);
67 public void setSubtypeEnablerTitle(CharSequence title) { argument
68 mSettings.setSubtypeEnablerTitle(title);
H A DInputMethodSettingsImpl.java63 final CharSequence title = getSubtypeEnablerTitle(context);
67 if (!TextUtils.isEmpty(title)) {
68 intent.putExtra(Intent.EXTRA_TITLE, title);
122 public void setInputMethodSettingsCategoryTitle(CharSequence title) { argument
124 mInputMethodSettingsCategoryTitle = title;
141 public void setSubtypeEnablerTitle(CharSequence title) { argument
143 mSubtypeEnablerTitle = title;
/frameworks/base/core/java/android/view/
H A DContextMenu.java41 * Sets the context menu header's title to the title given in <var>titleRes</var>
44 * @param titleRes The string resource identifier used for the title.
50 * Sets the context menu header's title to the title given in <var>title</var>.
52 * @param title The character sequence used for the title.
55 public ContextMenu setHeaderTitle(CharSequence title); argument
77 * <var>view</var>. This replaces the header title an
[all...]
H A DSubMenu.java35 * Sets the submenu header's title to the title given in <var>titleRes</var>
38 * @param titleRes The string resource identifier used for the title.
44 * Sets the submenu header's title to the title given in <var>title</var>.
46 * @param title The character sequence used for the title.
49 public SubMenu setHeaderTitle(CharSequence title); argument
71 * <var>view</var>. This replaces the header title an
[all...]
H A DActionMode.java64 * Set the title of the action mode. This method will have no visible effect if
67 * @param title Title string to set
72 public abstract void setTitle(CharSequence title); argument
75 * Set the title of the action mode. This method will have no visible effect if
78 * @param resId Resource ID of a string to set as the title
108 * Set whether or not the title/subtitle display for this action mode
111 * <p>In many cases the supplied title for an action mode is merely
113 * mode to be useful. If the title is optional, the system may choose
114 * to hide the title entirely rather than truncate it due to a lack
120 * @param titleOptional true if the title onl
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DContextMenuBuilder.java54 public ContextMenu setHeaderTitle(CharSequence title) { argument
55 return (ContextMenu) super.setHeaderTitleInt(title);
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 DSubMenuBuilder.java103 public SubMenu setHeaderTitle(CharSequence title) { argument
104 return (SubMenu) super.setHeaderTitleInt(title);
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
H A DStackOverflowXmlParser.java69 // It includes the data members "title," "link," and "summary."
71 public final String title; field in class:StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) { argument
76 this.title = title;
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
87 String title = null;
95 if (name.equals("title")) {
96 title = readTitle(parser);
105 return new Entry(title, summar
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DTextMessage.java24 public String title = ""; field in class:TextMessage
37 title = in.readString();
54 dest.writeString(title);
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/internal/view/menu/
H A DSubMenuWrapperICS.java42 public SubMenu setHeaderTitle(CharSequence title) { argument
43 ((android.view.SubMenu) mWrappedObject).setHeaderTitle(title);
H A DMenuView.java66 * Sets the title of the item view.
68 * @param title The title to set.
70 public void setTitle(CharSequence title); argument
112 * Whether this item view prefers displaying the condensed title rather than the normal
113 * title. If a condensed title is not available, the normal title will be used.
115 * @return Whether this item view prefers displaying the condensed title.
H A DSubMenuBuilder.java107 public SubMenu setHeaderTitle(CharSequence title) { argument
108 super.setHeaderTitleInt(title);
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebHistoryItemChromium.java84 String url, String originalUrl, String title, Bitmap favicon) {
87 mTitle = title;
83 WebHistoryItemChromium( String url, String originalUrl, String title, Bitmap favicon) argument
/frameworks/base/core/java/android/app/
H A DTabActivity.java146 onChildTitleChanged(Activity childActivity, CharSequence title) { argument
151 ((TextView) tabView).setText(title);
H A DFragmentBreadCrumbs.java132 * @param title the title for the parent entry
133 * @param shortTitle the short title for the parent entry
137 public void setParentTitle(CharSequence title, CharSequence shortTitle, argument
139 mParentEntry = createBackStackEntry(title, shortTitle);
154 private BackStackRecord createBackStackEntry(CharSequence title, CharSequence shortTitle) { argument
155 if (title == null) return null;
159 entry.setBreadCrumbTitle(title);
165 * Set a custom title for the bread crumbs. This will be the first entry
167 * title i
169 setTitle(CharSequence title, CharSequence shortTitle) argument
[all...]
H A DProgressDialog.java92 public static ProgressDialog show(Context context, CharSequence title, argument
94 return show(context, title, message, false);
97 public static ProgressDialog show(Context context, CharSequence title, argument
99 return show(context, title, message, indeterminate, false, null);
102 public static ProgressDialog show(Context context, CharSequence title, argument
104 return show(context, title, message, indeterminate, cancelable, null);
107 public static ProgressDialog show(Context context, CharSequence title, argument
111 dialog.setTitle(title);
/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditLayout.java107 public void setTitle(CharSequence title) { argument
/frameworks/base/core/tests/coretests/src/android/view/menu/
H A DMenuScenario.java169 public Params setItemTitle(int itemPos, CharSequence title) { argument
170 itemTitles.put(itemPos, title);
/frameworks/base/media/java/android/media/
H A DRingtone.java97 * Returns a human-presentable title for ringtone. Looks in media
111 String title = null;
121 title = context
139 title = uri.getLastPathSegment();
149 if (title == null) {
150 title = context.getString(com.android.internal.R.string.ringtone_unknown);
152 if (title == null) {
153 title = "";
157 return title;
319 void setTitle(String title) { argument
[all...]
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java61 public void addAction(int icon, CharSequence title, PendingIntent intent) { argument
62 b.addAction(icon, title, intent);
/frameworks/support/v7/appcompat/src/android/support/v7/view/
H A DActionMode.java76 * Set the title of the action mode. This method will have no visible effect if a custom view
79 * @param title Title string to set
83 public abstract void setTitle(CharSequence title); argument
86 * Set the title of the action mode. This method will have no visible effect if a custom view
89 * @param resId Resource ID of a string to set as the title
116 * Set whether or not the title/subtitle display for this action mode is optional.
118 * <p>In many cases the supplied title for an action mode is merely meant to add context and is
119 * not strictly required for the action mode to be useful. If the title is optional, the system
120 * may choose to hide the title entirely rather than truncate it due to a lack of available
126 * @param titleOptional true if the title onl
[all...]

Completed in 502 milliseconds

1234