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

1234567891011>>

/packages/apps/TV/src/com/android/tv/ui/sidepanel/
H A DSimpleItem.java20 * A simple item which shows title and description.
23 public SimpleItem(String title) { argument
24 super(title);
27 public SimpleItem(String title, String description) { argument
28 super(title, description);
H A DSubMenuItem.java23 public SubMenuItem(String title, SideFragmentManager fragmentManager) { argument
24 this(title, null, 0, fragmentManager);
27 public SubMenuItem(String title, String description, SideFragmentManager fragmentManager) { argument
28 this(title, description, 0, fragmentManager);
31 public SubMenuItem(String title, int iconId, SideFragmentManager fragmentManager) { argument
32 this(title, null, iconId, fragmentManager);
35 public SubMenuItem(String title, String description, int iconId, argument
37 super(title, description, iconId);
H A DRadioButtonItem.java22 public RadioButtonItem(String title) { argument
23 super(title, null);
26 public RadioButtonItem(String title, String description) { argument
27 super(title, description);
H A DActionItem.java30 public ActionItem(String title) { argument
31 this(title, null, 0);
34 public ActionItem(String title, String description) { argument
35 this(title, description, 0);
38 public ActionItem(String title, int iconId) { argument
39 this(title, null, iconId);
42 public ActionItem(String title, String description, int iconId) { argument
43 mTitle = title;
56 TextView titleView = (TextView) view.findViewById(R.id.title);
H A DCheckBoxItem.java31 public CheckBoxItem(String title) { argument
32 this(title, null);
35 public CheckBoxItem(String title, String description) { argument
36 this(title, description, false);
39 public CheckBoxItem(String title, String description, boolean layoutForLargeDescription) { argument
40 super(title, description);
H A DDividerItem.java30 public DividerItem(String title) { argument
31 mTitle = title;
42 mTitleView = (TextView) view.findViewById(R.id.title);
/packages/apps/Dialer/java/com/android/dialer/app/voicemail/error/
H A DVoicemailTosMessage.java22 public VoicemailTosMessage(CharSequence title, CharSequence description, Action... actions) { argument
23 super(title, description, actions);
/packages/apps/Car/Settings/src/com/android/car/settings/common/
H A DSimpleTextLineItem.java22 * A LineItem that displays a title and description. Not clickable.
28 public SimpleTextLineItem(CharSequence title, CharSequence desc) { argument
29 super(title);
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
H A DTestMenuItem.java40 @StringRes int title; field in class:TestMenuItem
54 public TestMenuItem setTitle(@StringRes int title) { argument
55 this.title = title;
60 public TestMenuItem setTitle(@StringRes CharSequence title) { argument
102 public void assertTitle(@StringRes int title) { argument
103 assertTrue(this.title == title);
/packages/apps/TV/src/com/android/tv/dvr/ui/list/
H A DSchedulesHeaderRow.java29 public SchedulesHeaderRow(String title, String description, int itemCount) { argument
30 mTitle = title;
36 * Sets title.
38 public void setTitle(String title) { argument
39 mTitle = title;
57 * Returns title.
83 public DateHeaderRow(String title, String description, int itemCount, long deadLineMs) { argument
84 super(title, description, itemCount);
102 public SeriesRecordingHeaderRow(String title, String description, int itemCount, argument
104 super(title, descriptio
[all...]
/packages/apps/TvSettings/QuickSettings/src/com/android/tv/quicksettings/
H A DSetting.java32 public Setting(String title) { argument
33 mTitle = title;
38 public Setting(SharedPreferences sharedPreferences, String key, String title, int max) { argument
40 mTitle = title;
46 public Setting(SharedPreferences sharedPreferences, String key, String title) { argument
48 mTitle = title;
61 public void setTitle(String title) { argument
62 mTitle = title;
/packages/apps/Camera2/src/com/android/camera/session/
H A DCaptureSessionFactory.java28 * @param title the title of the new session.
34 SessionNotifier sessionNotifier, String title,
33 createNewSession(CaptureSessionManager sessionManager, SessionNotifier sessionNotifier, String title, long sessionStartMillis, Location location) argument
H A DCaptureSessionFactoryImpl.java42 SessionNotifier sessionNotifier, String title, long sessionStartTime,
45 mSessionStorageManager, TEMP_SESSIONS, title);
46 return new CaptureSessionImpl(title, sessionStartTime, location, temporarySessionFile,
48 mStackSaverFactory.create(title, location));
41 createNewSession(CaptureSessionManager sessionManager, SessionNotifier sessionNotifier, String title, long sessionStartTime, Location location) argument
/packages/apps/Launcher3/src/com/android/launcher3/discovery/
H A DAppDiscoveryItem.java36 public final CharSequence title; field in class:AppDiscoveryItem
46 CharSequence title,
59 this.title = title;
41 AppDiscoveryItem(String packageName, boolean isInstantApp, boolean isRecent, float starRating, long reviewCount, CharSequence title, String publisher, Bitmap bitmap, String price, Intent launchIntent, Intent installIntent) argument
/packages/apps/Settings/src/com/android/settings/search2/
H A DSavedQueryViewHolder.java29 titleView = view.findViewById(android.R.id.title);
35 titleView.setText(result.title);
36 titleView.setOnClickListener(v -> fragment.onSavedQueryClicked(result.title));
37 removeButton.setOnClickListener(v -> fragment.onRemoveSavedQueryClicked(result.title));
/packages/apps/Settings/src/com/android/settings/location/
H A DInjectedSetting.java50 public final String title; field in class:InjectedSetting
69 String title, int iconId, UserHandle userHandle, String settingsActivity) {
72 this.title = Preconditions.checkNotNull(title, "title");
82 String title, int iconId, UserHandle userHandle, String settingsActivity) {
84 TextUtils.isEmpty(title) || TextUtils.isEmpty(settingsActivity)) {
88 + ", title=" + title + ", settingsActivity=" + settingsActivity);
92 return new InjectedSetting(packageName, className, title, iconI
68 InjectedSetting(String packageName, String className, String title, int iconId, UserHandle userHandle, String settingsActivity) argument
81 newInstance(String packageName, String className, String title, int iconId, UserHandle userHandle, String settingsActivity) argument
[all...]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
H A DContentFragment.java44 public static ContentFragment newInstance(String title) { argument
45 return newInstance(title, null, null, 0, Color.TRANSPARENT);
48 public static ContentFragment newInstance(String title, String breadcrumb, argument
50 return newInstance(title, breadcrumb, description, 0, Color.TRANSPARENT);
53 public static ContentFragment newInstance(String title, String breadcrumb, String description, argument
55 return newInstance(title, breadcrumb, description, iconResourceId, Color.TRANSPARENT);
58 public static ContentFragment newInstance(String title, String breadcrumb, String description, argument
62 BaseContentFragment.buildArgs(title, breadcrumb, description, iconResourceId,
67 public static ContentFragment newInstance(String title, String breadcrumb, String description, argument
69 return newInstance(title, breadcrum
72 newInstance(String title, String breadcrumb, String description, Uri iconResourceUri, int iconBackgroundColor) argument
81 newInstance(String title, String breadcrumb, String description, Bitmap iconbitmap) argument
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DChooseLockSettingsHelper.java63 * @param title title of the confirmation screen; shown in the action bar
67 public boolean launchConfirmationActivity(int request, CharSequence title) { argument
68 return launchConfirmationActivity(request, title, null, null, false, false);
74 * @param title title of the confirmation screen; shown in the action bar
80 boolean launchConfirmationActivity(int request, CharSequence title, boolean returnCredentials) { argument
81 return launchConfirmationActivity(request, title, null, null, returnCredentials, false);
87 * @param title title o
94 launchConfirmationActivity(int request, CharSequence title, boolean returnCredentials, int userId) argument
114 launchConfirmationActivity(int request, @Nullable CharSequence title, @Nullable CharSequence header, @Nullable CharSequence description, boolean returnCredentials, boolean external) argument
136 launchConfirmationActivity(int request, @Nullable CharSequence title, @Nullable CharSequence header, @Nullable CharSequence description, boolean returnCredentials, boolean external, int userId) argument
153 launchConfirmationActivity(int request, @Nullable CharSequence title, @Nullable CharSequence header, @Nullable CharSequence description, long challenge) argument
171 launchConfirmationActivity(int request, @Nullable CharSequence title, @Nullable CharSequence header, @Nullable CharSequence description, long challenge, int userId) argument
192 launchConfirmationActivityWithExternalAndChallenge(int request, @Nullable CharSequence title, @Nullable CharSequence header, @Nullable CharSequence description, boolean external, long challenge, int userId) argument
199 launchConfirmationActivity(int request, @Nullable CharSequence title, @Nullable CharSequence header, @Nullable CharSequence description, boolean returnCredentials, boolean external, boolean hasChallenge, long challenge, int userId) argument
230 launchConfirmationActivity(int request, CharSequence title, CharSequence header, CharSequence message, Class<?> activityClass, boolean returnCredentials, boolean external, boolean hasChallenge, long challenge, int userId) argument
[all...]
H A DConfirmDeviceCredentialActivity.java41 public static Intent createIntent(CharSequence title, CharSequence details) { argument
45 intent.putExtra(KeyguardManager.EXTRA_TITLE, title);
50 public static Intent createIntent(CharSequence title, CharSequence details, long challenge) { argument
54 intent.putExtra(KeyguardManager.EXTRA_TITLE, title);
66 String title = intent.getStringExtra(KeyguardManager.EXTRA_TITLE);
77 // if the client app did not hand in a title and we are about to show the work challenge,
78 // check whether there is a policy setting the organization name and use that as title
79 if ((title == null) && isManagedProfile) {
80 title = getTitleFromOrganizationName(userId);
93 0 /* request code */, null /* title */, titl
[all...]
/packages/apps/Settings/src/com/android/settings/notification/
H A DZenRuleInfo.java18 if (title != null ? !title.equals(that.title) : that.title != null) return false;
33 public String title; field in class:ZenRuleInfo
/packages/apps/Settings/src/com/android/settings/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);
H A DRadioButtonPreference.java75 TextView title = (TextView) view.findViewById(android.R.id.title);
76 if (title != null) {
77 title.setSingleLine(false);
78 title.setMaxLines(3);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFolderInfo.java71 public void setTitle(CharSequence title) { argument
72 this.title = title;
74 listeners.get(i).onTitleChanged(title);
81 values.put(LauncherSettings.Favorites.TITLE, title.toString());
109 public void onTitleChanged(CharSequence title); argument
/packages/apps/TV/src/com/android/tv/dialog/
H A DWebDialogFragment.java46 * @param title Optional title for the dialog.
48 public static WebDialogFragment newInstance(String url, @Nullable String title, argument
53 args.putString(TITLE, title);
62 String title = getArguments().getString(TITLE);
64 int style = TextUtils.isEmpty(title) ? DialogFragment.STYLE_NO_TITLE
73 String title = getArguments().getString(TITLE);
74 getDialog().setTitle(title);
/packages/services/Telephony/src/com/android/phone/
H A DPhoneDisplayMessage.java44 String title = (String)context.getText(R.string.network_info_message);
45 displayMessage(context, title, infoMsg);
57 String title = (String)context.getText(R.string.network_error_message);
58 displayMessage(context, title, errorMsg);
61 public static void displayMessage(Context context, String title, String msg) { argument
73 .setTitle(title)

Completed in 3053 milliseconds

1234567891011>>