Changing Menu Item’s icon from the URL.

Updated 14 December 2016

Save

In Mobikul application, we allow user to provide different category icon’s for each category. Category icons can be changed at any instance of time.

In this blog we will see how the icons of any menu item can be changed.

Let us explore it step by steps:

1. Using Picasso Library

A powerful image downloading and caching library for Android.

compile ‘com.squareup.picasso:picasso:2.5.2’

2. Using Target Interface of Picasso Library

Target Interface represents an arbitrary listener for image loading.  This interface is generally used as a mediator between our view and source image.

There are three methods that are overridden when we use this inteface.

A. void onBitmapLoaded(Bitmap bitmap, LoadedFrom from)

Callback when an image has been successfully loaded.

B. void onBitmapFailed(Drawable errorDrawable)

Callback indicating the image could not be successfully loaded.

C. void onPrepareLoad(Drawable placeHolderDrawable)

Callback invoked right before your request is submitted.

3. Implementation

In this sample code, we have create a new instance of Interface Target and passed this instance to picasso library for image loading. When the  drawable is loaded onBitmapLoaded method is called and provide bitmap of the image.

Since bitmap cannot be directly added to a menu item. So, we have converted this bitmap to bitmap drawable. And then we can use this drawable (Bitmap Drawable) as a icon in Menu item.

 

 

Further Reading:

  1. Common mistake in using Target
  2.  https://github.com/square/picasso

 

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Start a Project


    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home