在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):onivas/MenuAnimation开源软件地址(OpenSource Url):https://github.com/onivas/MenuAnimation开源编程语言(OpenSource Language):Java 86.7%开源软件介绍(OpenSource Introduction):Menu Animation##Floating Action Button (FAB) based on Material Design By Savino Ordine - io.github.onivas.promotedactions.PromotedActionsLibrary; This is a Lib allow you to create a Promoted Action menu placed on right|bottom corner of the screen. ##How it works #Import library import io.github.onivas.promotedactions.PromotedActionsLibrary; #Steps FrameLayout frameLayout = (FrameLayout) findViewById(R.id.container); PromotedActionsLibrary promotedActionsLibrary = new PromotedActionsLibrary(); // setup library promotedActionsLibrary.setup(getApplicationContext(), frameLayout); // create onClickListener for each promoted action View.OnClickListener onClickListener = new View.OnClickListener() { @Override public void onClick(View view) { // Do something } }; // customize promoted actions with a drawable promotedActionsLibrary.addItem(getResources().getDrawable(android.R.drawable.ic_menu_edit), onClickListener); promotedActionsLibrary.addItem(getResources().getDrawable(android.R.drawable.ic_menu_send), onClickListener); promotedActionsLibrary.addItem(getResources().getDrawable(android.R.drawable.ic_input_get), onClickListener); // create main floating button and customize it with a drawable promotedActionsLibrary.addMainItem(getResources().getDrawable(android.R.drawable.ic_input_add)); |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论