Home | History | Annotate | Download | only in preference

Lines Matching refs:titleRes

312         public int titleRes;
390 * Return the currently set title. If {@link #titleRes} is set,
395 if (titleRes != 0) {
396 return res.getText(titleRes);
446 dest.writeInt(titleRes);
468 titleRes = in.readInt();
779 header.titleRes = tv.resourceId;
973 int titleRes = header.breadCrumbTitleRes;
975 if (titleRes == 0) {
976 titleRes = header.titleRes;
980 titleRes, shortTitleRes);
998 * @param titleRes Optional resource ID of title to show for this item.
1004 int titleRes, int shortTitleRes) {
1009 intent.putExtra(EXTRA_SHOW_FRAGMENT_TITLE, titleRes);
1017 * but uses a 0 titleRes.
1036 * @param titleRes Resource ID of string to display for the title of
1042 Fragment resultTo, int resultRequestCode, int titleRes, int shortTitleRes) {
1043 Intent intent = onBuildStartFragmentIntent(fragmentName, args, titleRes, shortTitleRes);
1228 * @param titleRes Optional resource identifier of the title of this
1238 public void startPreferencePanel(String fragmentClass, Bundle args, int titleRes,
1241 startWithFragment(fragmentClass, args, resultTo, resultRequestCode, titleRes, 0);
1249 if (titleRes != 0) {
1250 transaction.setBreadCrumbTitle(titleRes);