【开源】CircleMenu
CircleMenu
- https://github.com/mattlogan/CircleMenu
介绍:
从上往下滑动的菜单,别被名字迷惑CircleMenu其实跟Circle没啥关系。运行效果:
![]()
使用说明:
在本页面下载链接中下载的是eclipse版本
添加CircleMenu
|
1
2
3
4
5
|
<com.matthewlogan.circlemenu.library.CircleMenu android:id="@+id/circle_menu" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/circle_menu_background" /> |
toggle菜单
|
1
|
circleMenu.toggle(); |
监听
|
1
|
circleMenu.setOnItemClickListener(this); |
响应菜单点击事件:
|
1
2
3
4
|
@Overridepublic void onItemClick(int position) { // do cool stuff here} |
自定义文字颜色,文字大小,分割线颜色等
|
1
2
3
4
5
6
7
8
|
<com.matthewlogan.circlemenu.library.CircleMenu android:id="@+id/circle_menu" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/circle_menu_background" app:textSize="18sp" app:textColor="@color/white" app:dividerColor="@color/white" /> |
posted on 2015-04-10 09:50 wasdchenhao 阅读(183) 评论(0) 收藏 举报

浙公网安备 33010602011771号