android 仿path半圆形菜单

jopen 11年前

path一直是引领着潮流的东西,每一次版本更新都会带来更炫的东西,今天带来的是一款左下角弹出式半圆形菜单

原作者github地址:https://github.com/dodola/PathButton

先看看效果图:

原作者上面填参数最下角的话不会达到效果,要修改xml配置文件:

    <geniuz.myPathbutton.composerLayout               android:id="@+id/test"               android:layout_width="20dp"               android:layout_height="wrap_content"                android:layout_alignParentLeft="true"               android:layout_centerVertical="true"            ></geniuz.myPathbutton.composerLayout>  
    // 引用控件                composerLayout clayout = (composerLayout) findViewById(R.id.test);                clayout.init(new int[] { R.drawable.composer_camera,                        R.drawable.composer_music, R.drawable.composer_place,                        R.drawable.composer_sleep, R.drawable.composer_thought,                        R.drawable.composer_with }, R.drawable.composer_button,                        R.drawable.composer_icn_plus, composerLayout.LEFTBOTTOM, 180,                        300);