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

123456789

/frameworks/base/tools/preload2/src/com/android/preload/actions/
H A DAbstractThreadedAction.java25 protected AbstractThreadedAction(String title) { argument
26 super(title);
H A DAbstractThreadedDeviceSpecificAction.java28 protected AbstractThreadedDeviceSpecificAction(String title, IDevice device) { argument
29 super(title);
/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);
/frameworks/base/core/java/android/view/
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...]
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();
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/menu/
H A DMenuBuilder_Delegate.java34 int categoryOrder, int ordering, CharSequence title, int defaultShowAsAction) {
35 return new BridgeMenuItemImpl(thisMenu, group, id, categoryOrder, ordering, title,
33 createNewMenuItem(MenuBuilder thisMenu, int group, int id, int categoryOrder, int ordering, CharSequence title, int defaultShowAsAction) argument
H A DBridgeMenuItemImpl.java41 CharSequence title, int showAsAction) {
42 super(menu, group, id, categoryOrder, ordering, title, showAsAction);
40 BridgeMenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering, CharSequence title, int showAsAction) argument
/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/support/design/src/android/support/design/internal/
H A DBottomNavigationMenu.java39 public SubMenu addSubMenu(int group, int id, int categoryOrder, CharSequence title) { argument
44 protected MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { argument
50 return super.addInternal(group, id, categoryOrder, title);
H A DNavigationMenu.java42 public SubMenu addSubMenu(int group, int id, int categoryOrder, CharSequence title) { argument
43 final MenuItemImpl item = (MenuItemImpl) addInternal(group, id, categoryOrder, title);
/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/core/java/com/android/internal/app/
H A DResolverTargetActionsDialogFragment.java40 private static final String TITLE_KEY = "title";
49 public ResolverTargetActionsDialogFragment(CharSequence title, ComponentName name, argument
52 args.putCharSequence(TITLE_KEY, 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/rs/java/tests/RsCameraDemo/src/com/android/example/rscamera/
H A DMediaStoreSaver.java42 String title,
50 return insertImage(contentResolver, streamWriter, title, description);
56 String title,
60 values.put(Images.Media.TITLE, title);
61 values.put(Images.Media.DISPLAY_NAME, title);
40 insertImage(ContentResolver contentResolver, Bitmap image, String title, String description) argument
54 insertImage(ContentResolver cr, StreamWriter source, String title, String description) argument
/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/support/v7/appcompat/src/android/support/v7/view/menu/
H A DSubMenuWrapperICS.java52 public SubMenu setHeaderTitle(CharSequence title) { argument
53 getWrappedObject().setHeaderTitle(title);
/frameworks/base/core/java/android/app/
H A DTabActivity.java129 onChildTitleChanged(Activity childActivity, CharSequence title) { argument
134 ((TextView) tabView).setText(title);
/frameworks/base/core/java/android/service/chooser/
H A DChooserTarget.java47 * The title of this target that will be shown to the user. The title may be truncated
78 * <p>A target is composed of a title and an icon for presentation to the user.
79 * The UI presenting this target may truncate the title if it is too long to be presented
97 * @param title title of this target that will be shown to a user
103 public ChooserTarget(CharSequence title, Icon icon, float score, argument
105 mTitle = title;
129 * Returns the title of this target for display to a user. The UI displaying the title
[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.

Completed in 1232 milliseconds

123456789