android - Is there anyway to set custom icon for FloatingActionMenu on close and open? -


i have used floatingactionmenu in project github library link here. can't customize icons of floating action menu on open , close.

you can listen click , maintain boolean

boolean is_expanded; 

now on first click set

is_expanded = !is_expanded; 

and

if(is_expanded){            fab.setbackgrounddrawable(drawable_expanded);             }else{            fab.setbackgrounddrawable(drawable_collapsed); 

}


Comments

Popular posts from this blog

yii2 - Yii 2 Running a Cron in the basic template -

asp.net - 'System.Web.HttpContext' does not contain a definition for 'GetOwinContext' Mystery -

mercurial graft feature, can it copy? -