Lines Matching refs:title

148      * this extra can also be specify to supply the title to be shown for
155 * this extra can also be specify to supply the short title to be shown for
251 TextView title;
272 holder.title = (TextView) view.findViewById(com.android.internal.R.id.title);
283 holder.title.setText(header.getTitle(getContext().getResources()));
316 * Resource ID of title of the header that is shown to the user.
325 public CharSequence title;
340 * Resource ID of optional text to show as the title in the bread crumb.
346 * Optional text to show as the title in the bread crumb.
352 * Resource ID of optional text to show as the short title in the bread crumb.
358 * Optional text to show as the short title in the bread crumb.
397 * Return the currently set title. If {@link #titleRes} is set,
399 * {@link #title} is returned.
405 return title;
421 * Return the currently set bread crumb title. If {@link #breadCrumbTitleRes} is set,
433 * Return the currently set bread crumb short title. If
454 TextUtils.writeToParcel(title, dest, flags);
476 title = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
796 header.title = tv.string;
1013 * @param titleRes Optional resource ID of title to show for this item.
1014 * @param shortTitleRes Optional resource ID of short title to show for this item.
1051 * @param titleRes Resource ID of string to display for the title of
1053 * @param shortTitleRes Resource ID of string to display for the short title of
1067 * Change the base title of the bread crumbs for the current preferences.
1071 public void showBreadCrumbs(CharSequence title, CharSequence shortTitle) {
1073 View crumbs = findViewById(android.R.id.title);
1074 // For screens with a different kind of title, don't create breadcrumbs.
1081 if (title != null) {
1082 setTitle(title);
1095 mFragmentBreadCrumbs.setTitle(title, shortTitle);
1101 * This prepends a title to the fragment breadcrumbs and attaches a listener to any clicks
1103 * @param title the title for the breadcrumb
1104 * @param shortTitle the short title for the breadcrumb
1106 public void setParentTitle(CharSequence title, CharSequence shortTitle,
1109 mFragmentBreadCrumbs.setParentTitle(title, shortTitle, listener);
1126 CharSequence title = header.getBreadCrumbTitle(getResources());
1127 if (title == null) title = header.getTitle(getResources());
1128 if (title == null) title = getTitle();
1129 showBreadCrumbs(title, header.getBreadCrumbShortTitle(getResources()));
1194 } else if (cur.title != null) {
1195 if (cur.title.equals(oh.title)) {
1213 if (cur.title != null && cur.title.equals(oh.title)) {
1249 * @param titleRes Optional resource identifier of the title of this
1251 * @param titleText Optional text of the title of this fragment.
1371 CharSequence title = getPreferenceScreen().getTitle();
1372 // Set the title of the activity
1373 if (title != null) {
1374 setTitle(title);