Searched refs:title (Results 1 - 25 of 431) 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);
H A DSwitchItem.java22 public SwitchItem(String title) { argument
23 this(title, null, null);
/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
H A DTemporarySessionFile.java41 sessionDirectory, String title) {
44 mTitle = title;
40 TemporarySessionFile(SessionStorageManager sessionStorageManager, String sessionDirectory, String title) argument
H A DSessionStorageManager.java52 * @param title the title of this session. Will be used to create a unique
59 public File createTemporaryOutputPath(String subDirectory, String title) throws IOException; argument
H A DStackSaver.java32 * @param title the title of this image, without the file extension
41 public Uri saveStackedImage(File inputImagePath, String title, int width, int height, argument
/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...]
H A DRadioButtonPreference.java72 TextView title = (TextView) view.findViewById(android.R.id.title);
73 if (title != null) {
74 title.setSingleLine(false);
75 title.setMaxLines(3);
/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/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)
/packages/apps/Camera2/src/com/android/camera/captureintent/
H A DCaptureIntentSessionFactory.java32 SessionNotifier sessionNotifier, String title, long sessionStartTime,
34 return new CaptureIntentSession(title, location, sessionManager, sessionNotifier);
31 createNewSession(CaptureSessionManager sessionManager, SessionNotifier sessionNotifier, String title, long sessionStartTime, Location location) argument
/packages/apps/Camera2/src/com/android/camera/data/
H A DVideoItemData.java31 public VideoItemData(long contentId, String title, String mimeType, Date creationDate, argument
35 super(contentId, title, mimeType, creationDate, lastModifiedDate, filePath, uri, dimensions,
/packages/apps/Launcher3/src/com/android/launcher3/widget/
H A DWidgetsRowViewHolder.java27 public final BubbleTextView title; field in class:WidgetsRowViewHolder
33 title = (BubbleTextView) v.findViewById(R.id.section);
/packages/apps/Camera2/src/com/android/camera/app/
H A DMediaSaver.java73 * @param title The title of the image.
86 void addImage(byte[] data, String title, long date, Location loc, int width, int height, argument
94 * @param title The title of the image.
108 void addImage(byte[] data, String title, long date, Location loc, int width, int height, argument
117 * @param title The title of the image.
126 void addImage(byte[] data, String title, long date, Location loc, int orientation, argument
136 * @param title Th
146 addImage(byte[] data, String title, Location loc, int width, int height, int orientation, ExifInterface exif, OnMediaSavedListener l) argument
[all...]

Completed in 1155 milliseconds

1234567891011>>