HomeSort by relevance Sort by last modified time
    Searched refs:wallpaperInfo (Results 1 - 4 of 4) sorted by null

  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
LiveWallpaperListAdapter.java 19 import android.app.WallpaperInfo;
94 LiveWallpaperTile wallpaperInfo = mWallpapers.get(position);
95 wallpaperInfo.setView(view);
98 if (wallpaperInfo.mThumbnail != null) {
99 image.setImageDrawable(wallpaperInfo.mThumbnail);
102 icon.setImageDrawable(wallpaperInfo.mInfo.loadIcon(mPackageManager));
107 label.setText(wallpaperInfo.mInfo.loadLabel(mPackageManager));
114 @Thunk WallpaperInfo mInfo;
115 public LiveWallpaperTile(Drawable thumbnail, WallpaperInfo info, Intent intent) {
160 WallpaperInfo info = null
    [all...]
WallpaperPickerActivity.java     [all...]
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperListAdapter.java 19 import android.app.WallpaperInfo;
111 LiveWallpaperInfo wallpaperInfo = mWallpapers.get(position);
113 holder.thumbnail.setImageDrawable(wallpaperInfo.thumbnail);
116 if (holder.title != null && wallpaperInfo.info != null) {
117 holder.title.setText(wallpaperInfo.info.loadLabel(mPackageManager));
119 holder.title.setCompoundDrawablesWithIntrinsicBounds(null, wallpaperInfo.thumbnail,
129 public WallpaperInfo info;
176 WallpaperInfo info = null;
178 info = new WallpaperInfo(mContext, resolveInfo);
LiveWallpaperActivity.java 24 import android.app.WallpaperInfo;
143 LiveWallpaperListAdapter.LiveWallpaperInfo wallpaperInfo =
145 final Intent intent = wallpaperInfo.intent;
146 final WallpaperInfo info = wallpaperInfo.info;

Completed in 1241 milliseconds