GuillotineMenu(铡刀菜单的使用)-Android

博客介绍了如何在Android中使用GuillotineMenu开源库创建炫酷的铡刀菜单效果,提供了截图及简单代码示例,并给出了GitHub和CSDN下载链接。
摘要由CSDN通过智能技术生成

一个开源的android工程,编译器用的是android-studio。GuillotineMenu-Android我们暂且翻译为铡刀菜单吧,确实挺像一铡刀一样切下来…… 看下效果图:
这里写图片描述
我懒得录gif直接上图吧
这里写图片描述
这里写图片描述

直接上代码吧:

public class MainActivity extends AppCompatActivity {
   
    private static final long RIPPLE_DURATION = 250;
    @BindView(R.id.content_hamburger)
    ImageView contentHamburger;
    @BindView(R.id.toolbar)
    Toolbar toolbar;

    @BindView(R.id.root)
    FrameLayout root;
    @BindView(R.id.frag)
    FrameLayout frag;



    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        if (toolbar != null) {
            setSupportActionBar(toolbar);
            getSupportActionBar().setTitle(null);
        }
        ButterKnife.bind(this);
        //弹出的菜单
        final View guillotineMenu = LayoutInflater.from(this).inflate(R.layout.guillotine, null);
        LinearLayout profile = guillotineMenu.findViewById(R.id.profile_group);
        LinearLayout feed = guillotineMenu.findViewById(R.id.feed_group);
        LinearLayout activity = guillotineMenu.findViewById(R.id.activity_group);
        LinearLayout settings = guillotineMenu.findViewById(R.id.settings_group);
        FragmentManager manager = getSupportFragmentManager();
        FragmentTransaction transaction = manager.beginTransaction();
        transaction.replace(R.id.frag,new WeatherFragment() );
        transaction.commit();
        root.addView(guillotineMenu);
        profile.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值