环形布局CircleLayout效果图用法链接

December 09, 2023
测试
测试
测试
测试
3 分钟阅读

环形布局,可拖动,独立item设置,可设置中心view 更自然,更自由

效果图

效果图
效果图

效果图

用法

引入

    compile 'com.nelson:CircleLayout:0.1.0'

方法

1.可以直接在布局文件中进行布局,类似LinearLayout,但是这里不需要关心布局方式,会自动将布局中的所有子view均匀分布到中心点四周,这里你可以设置自己想要的半径

<com.nelson.circlelayout.CircleLayout
        android:id="@+id/circle"
        android:layout_width="wrap_content"
        android:layout_height="400dp"
        android:layout_gravity="center"
        app:radium="120dp"
        >

        <ImageView
            android:id="@+id/image1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@mipmap/ic_launcher_round" />

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@mipmap/ic_launcher_round" />

         ...

    </com.nelson.circlelayout.CircleLayout>

2.也可以直接从代码中添加子View

    CircleLayout circleLayout = (CircleLayout) findViewById(R.id.circle);
    circleLayout.addView(View v);

3.还可以设置中心的View,这个功能目前只能在代码中设置:

    circleLayout.setCenterView(View v);

4.当然,这里还有removeget方法,方便使用 5.如果想在代码中动态设置半径,可以直接调用

    circleLayout.setRadius(int radius);

6.可以控制该layout是否可滑动

    circleLayout.setCanScroll(boolean isCanScroll);

7.如果想给每一个子view添加动画啥的,可以直接对子view进行操作

8.更多用法请自行脑补

链接

https://github.com/nelson1110/CircleLayout

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多