Searched refs:title (Results 1 - 25 of 405) sorted by relevance

1234567891011>>

/frameworks/base/tools/preload2/src/com/android/preload/actions/
H A DAbstractThreadedAction.java26 protected AbstractThreadedAction(String title) { argument
27 super(title);
H A DAbstractThreadedDeviceSpecificAction.java28 protected AbstractThreadedDeviceSpecificAction(String title, IDevice device) { argument
29 super(title);
/frameworks/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/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.java108 public void setInputMethodSettingsCategoryTitle(CharSequence title) { argument
110 mInputMethodSettingsCategoryTitle = title;
127 public void setSubtypeEnablerTitle(CharSequence title) { argument
129 mSubtypeEnablerTitle = title;
158 final CharSequence title;
160 title = context.getString(mSubtypeEnablerTitleRes);
162 title = mSubtypeEnablerTitle;
164 pref.setTitle(title);
167 intent.putExtra(Intent.EXTRA_TITLE, title);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/widget/
H A DFooterPreference.java51 TextView title = holder.itemView.findViewById(android.R.id.title);
52 title.setMovementMethod(new LinkMovementMethod());
53 title.setClickable(false);
54 title.setLongClickable(false);
/frameworks/support/design/src/android/support/design/internal/
H A DBottomNavigationMenu.java40 public SubMenu addSubMenu(int group, int id, int categoryOrder, CharSequence title) { argument
45 protected MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { argument
52 final MenuItem item = 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/SupportLeanbackDemos/src/com/example/android/leanback/
H A DDetailsPresenterSelectionActivity.java53 private static void addAction(List<GuidedAction> actions, long id, String title, String desc) { argument
56 .title(title)
62 long id, String title, String desc, boolean checked) {
64 .title(title)
79 String title = getString(R.string.guidedstep_second_title);
83 return new Guidance(title, description, breadcrumb, icon);
61 addCheckedAction(List<GuidedAction> actions, Context context, long id, String title, String desc, boolean checked) argument
H A DPhotoItem.java25 public PhotoItem(String title, int imageResourceId) { argument
26 this(title, null, imageResourceId);
29 public PhotoItem(String title, int imageResourceId, int id) { argument
30 this(title, imageResourceId);
34 public PhotoItem(String title, String content, int imageResourceId) { argument
35 mTitle = title;
42 public PhotoItem(String title, String content, int imageResourceId, int id) { argument
43 this(title, content, imageResourceId);
/frameworks/support/frameworks/support/samples/SupportWearDemos/src/com/example/android/support/wear/app/drawers/
H A DNavItem.java28 public NavItem(Class<? extends Fragment> fragment, String title, Drawable drawable) { argument
30 mTitle = title;
/frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/android/arch/persistence/room/integration/kotlintestapp/vo/
H A DBookWithPublisher.kt22 data class BookWithPublisher(val bookId: String, val title: String,
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DDetailsPresenterSelectionActivity.java53 private static void addAction(List<GuidedAction> actions, long id, String title, String desc) { argument
56 .title(title)
62 long id, String title, String desc, boolean checked) {
64 .title(title)
79 String title = getString(R.string.guidedstep_second_title);
83 return new Guidance(title, description, breadcrumb, icon);
61 addCheckedAction(List<GuidedAction> actions, Context context, long id, String title, String desc, boolean checked) argument
H A DPhotoItem.java25 public PhotoItem(String title, int imageResourceId) { argument
26 this(title, null, imageResourceId);
29 public PhotoItem(String title, int imageResourceId, int id) { argument
30 this(title, imageResourceId);
34 public PhotoItem(String title, String content, int imageResourceId) { argument
35 mTitle = title;
42 public PhotoItem(String title, String content, int imageResourceId, int id) { argument
43 this(title, content, imageResourceId);
/frameworks/support/samples/SupportWearDemos/src/com/example/android/support/wear/app/drawers/
H A DNavItem.java28 public NavItem(Class<? extends Fragment> fragment, String title, Drawable drawable) { argument
30 mTitle = title;
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
H A DHeaderMixin.java67 * @param title The resource ID of the text to be set as header.
69 public void setText(int title) { argument
72 titleView.setText(title);
79 * @param title The text to be set as header.
81 public void setText(CharSequence title) { argument
84 titleView.setText(title);
/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);
78 return "title=" + title + " text=" + text + " icon=" + icon +
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/app/
H A DPhotoItem.java26 public PhotoItem(String title, int imageResourceId) { argument
27 this(title, null, imageResourceId);
30 public PhotoItem(String title, String content, int imageResourceId) { argument
31 mTitle = 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/base/tests/UiBench/src/com/android/test/uibench/leanback/
H A DPhotoItem.java26 public PhotoItem(String title, long id) { argument
27 mTitle = title;
/frameworks/base/tools/preload2/src/com/android/preload/ui/
H A DIUI.java35 boolean showConfirmDialog(String title, String message); argument
39 <T> T showChoiceDialog(String title, String message, T[] choices); argument
/frameworks/support/design/tests/src/android/support/design/widget/
H A DCustomSnackbar.java32 /** Sets the title of this custom snackbar. */
33 public CustomSnackbar setTitle(String title) { argument
35 titleView.setText(title);

Completed in 650 milliseconds

1234567891011>>