Home | History | Annotate | Download | only in camera

Lines Matching refs:ids

42  * image ids (e.g. imageIds="@array/camera_flashmode_icons").
298 * Override the image ids of this button.
301 TypedArray ids = null;
303 ids = getResources().obtainTypedArray(resId);
304 mImageIds = new int[ids.length()];
305 for (int i = 0; i < ids.length(); i++) {
306 mImageIds[i] = ids.getResourceId(i, 0);
309 if (ids != null) {
310 ids.recycle();
323 TypedArray ids = null;
325 ids = getResources().obtainTypedArray(resId);
326 mDescIds = new int[ids.length()];
327 for (int i = 0; i < ids.length(); i++) {
328 mDescIds[i] = ids.getResourceId(i, 0);
331 if (ids != null) {
332 ids.recycle();
368 // In some cases, a new set of image Ids are set via overrideImageIds()