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

  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
DrawableDownloader.java 91 BitmapDrawable findDrawable(BitmapWorkerOptions options) {
101 if (options.getHeight() != BitmapWorkerOptions.MAX_IMAGE_DIMENSION_PX) {
105 } else if (options.getWidth() != BitmapWorkerOptions.MAX_IMAGE_DIMENSION_PX) {
114 BitmapDrawable findLargestDrawable(BitmapWorkerOptions options) {
223 public final Drawable loadBitmapBlocking(BitmapWorkerOptions options) {
235 protected Drawable doInBackground(BitmapWorkerOptions... params) {
251 public void loadBitmap(BitmapWorkerOptions options, final ImageView imageView) {
266 protected Drawable doInBackground(BitmapWorkerOptions... params) {
284 public void getBitmap(BitmapWorkerOptions options, final BitmapCallback callback) {
298 protected Drawable doInBackground(BitmapWorkerOptions... params)
    [all...]
BitmapWorkerOptions.java 33 public class BitmapWorkerOptions {
77 public BitmapWorkerOptions build() {
78 BitmapWorkerOptions options = new BitmapWorkerOptions();
157 private BitmapWorkerOptions() {
BitmapDownloader.java 159 public final Bitmap loadBitmapBlocking(BitmapWorkerOptions options) {
171 protected Bitmap doInBackground(BitmapWorkerOptions... params) {
188 public void loadBitmap(BitmapWorkerOptions options, final ImageView imageView) {
203 protected Bitmap doInBackground(BitmapWorkerOptions... params) {
221 public void getBitmap(BitmapWorkerOptions options, final BitmapCallback callback) {
231 protected Bitmap doInBackground(BitmapWorkerOptions... params) {
290 private void addBitmapToMemoryCache(BitmapWorkerOptions key, Bitmap bitmap, boolean isScaled) {
313 private Bitmap getBitmapFromMemCache(BitmapWorkerOptions key) {
314 if (key.getHeight() != BitmapWorkerOptions.MAX_IMAGE_DIMENSION_PX) {
359 public Bitmap getLargestBitmapFromMemCache(BitmapWorkerOptions key)
    [all...]
BitmapWorkerTask.java 54 * @see BitmapWorkerOptions
56 public class BitmapWorkerTask extends AsyncTask<BitmapWorkerOptions, Void, Bitmap> {
76 protected Bitmap doInBackground(BitmapWorkerOptions... params) {
81 protected Bitmap retrieveBitmap(BitmapWorkerOptions workerOptions) {
127 BitmapWorkerOptions outputOptions) throws IOException {
158 private Bitmap scaleBitmapIfNecessary(BitmapWorkerOptions outputOptions, Bitmap bitmap) {
195 private Bitmap decodeBitmap(InputStream in, BitmapWorkerOptions options)
259 private Bitmap getBitmapFromHttp(BitmapWorkerOptions options) throws IOException {
277 private Bitmap getBitmapFromContent(BitmapWorkerOptions options) throws IOException {
319 private static Bitmap createIconBitmap(Drawable drawable, BitmapWorkerOptions workerOptions)
    [all...]
DrawableLoader.java 54 * @see BitmapWorkerOptions
56 class DrawableLoader extends AsyncTask<BitmapWorkerOptions, Void, Drawable> {
94 protected Drawable doInBackground(BitmapWorkerOptions... params) {
99 protected Drawable retrieveDrawable(BitmapWorkerOptions workerOptions) {
153 BitmapWorkerOptions outputOptions) throws IOException {
180 private Drawable decodeBitmap(InputStream in, BitmapWorkerOptions options)
269 private Drawable getBitmapFromHttp(BitmapWorkerOptions options) throws IOException {
287 private Drawable getBitmapFromContent(BitmapWorkerOptions options)
308 Log.w(TAG, "Get null resourceUri from BitmapWorkerOptions.");
353 private Drawable getAccountImage(BitmapWorkerOptions options)
    [all...]
SettingsToast.java 94 bitmapDownloader.getBitmap(new BitmapWorkerOptions.Builder(mContext).resource(
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
AccountImageChangeObserver.java 30 import com.android.tv.settings.widget.BitmapWorkerOptions;
113 public synchronized void registerChangeUriIfPresent(BitmapWorkerOptions options) {
TransitionImage.java 33 import com.android.tv.settings.widget.BitmapWorkerOptions;
206 BitmapWorkerOptions key = new BitmapWorkerOptions.Builder(context)
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
BaseContentFragment.java 39 import com.android.tv.settings.widget.BitmapWorkerOptions;
209 bitmapDownloader.getBitmap(new BitmapWorkerOptions.Builder(
373 bitmapDownloader.getBitmap(new BitmapWorkerOptions.Builder(mActivity).resource(
ActionAdapter.java 45 import com.android.tv.settings.widget.BitmapWorkerOptions;
324 BitmapDownloader.getInstance(mContext).getBitmap(new BitmapWorkerOptions.Builder(

Completed in 273 milliseconds