Lines Matching refs:mWallpapersView
68 private LinearLayout mWallpapersView; field in WallpaperPickerActivity
139 mWallpapersView = (LinearLayout) findViewById(R.id.wallpaper_list); in init()
142 populateWallpapers(mWallpapersView, mSavedImages.loadThumbnailsAndImageIdList(), true); in init()
146 populateWallpapers(mWallpapersView, wallpapers, false); in init()
176 if (mSelectedIndex >= 0 && mSelectedIndex < mWallpapersView.getChildCount()) { in init()
177 onClick(mWallpapersView.getChildAt(mSelectedIndex)); in init()
195 mWallpapersView.setLayoutTransition(transitioner); in init()
256 int childCount = mWallpapersView.getChildCount(); in onLongClick()
258 mWallpapersView.getChildAt(i).setSelected(false); in onLongClick()
279 mSelectedIndex = mWallpapersView.indexOfChild(v); in selectTile()
368 for (; indexOfExistingTile < mWallpapersView.getChildCount(); indexOfExistingTile++) { in addTemporaryWallpaperTile()
369 View thumbnail = mWallpapersView.getChildAt(indexOfExistingTile); in addTemporaryWallpaperTile()
379 mWallpapersView.removeViewAt(indexOfExistingTile); in addTemporaryWallpaperTile()
384 imageTile = createTileView(mWallpapersView, info, true); in addTemporaryWallpaperTile()
387 mWallpapersView.addView(imageTile, 0); in addTemporaryWallpaperTile()
497 int childCount = mWallpapersView.getChildCount(); in onPrepareActionMode()
500 CheckableFrameLayout c = (CheckableFrameLayout) mWallpapersView.getChildAt(i); in onPrepareActionMode()
523 int childCount = mWallpapersView.getChildCount(); in onActionItemClicked()
528 (CheckableFrameLayout) mWallpapersView.getChildAt(i); in onActionItemClicked()
539 mWallpapersView.removeView(v); in onActionItemClicked()
559 int childCount = mWallpapersView.getChildCount(); in onDestroyActionMode()
561 CheckableFrameLayout c = (CheckableFrameLayout) mWallpapersView.getChildAt(i); in onDestroyActionMode()