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

  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperActivity.java 20 import android.app.WallpaperInfo;
51 LiveWallpaperListAdapter.LiveWallpaperInfo wallpaperInfo =
53 final WallpaperInfo info = wallpaperInfo.info;
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;
175 WallpaperInfo info = null;
177 info = new WallpaperInfo(mContext, resolveInfo);
  /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...]

Completed in 87 milliseconds