Home | History | Annotate | Download | only in launcher3

Lines Matching full:resid

100         int resId = getResources().getIdentifier(RES_DEFAULT_WALLPAPER_HIDDEN, "bool",
102 return resId != 0 && getResources().getBoolean(resId);
106 int resId = getResources().getIdentifier(RES_SYSTEM_WALLPAPER_DIR, "string",
108 return (resId != 0) ? new File(getResources().getString(resId)) : null;
112 int resId = getResources().getIdentifier(RES_REQUIRE_FIRST_RUN_FLOW, "bool",
114 return resId != 0 && getResources().getBoolean(resId);
123 int resId = getResources().getIdentifier(RES_GRID_NUM_ROWS,
125 if (resId > 0) {
126 numRows = getResources().getInteger(resId);
129 resId = getResources().getIdentifier(RES_GRID_NUM_COLUMNS,
131 if (resId > 0) {
132 numColumns = getResources().getInteger(resId);
135 resId = getResources().getIdentifier(RES_GRID_ICON_SIZE_DP,
137 if (resId > 0) {
138 int px = getResources().getDimensionPixelSize(resId);