Android-CircleMenu icon indicating copy to clipboard operation
Android-CircleMenu copied to clipboard

Menu with items on a rotating circle

Results 11 Android-CircleMenu issues
Sort by recently updated
recently updated
newest added

This is not an issue, I just wanted to commend you on this amazing piece of code you wrote. I'm guessing you worked off of some other examples or did...

1,如何点击CircleLayout外的一个按钮,实现CircleLayout滚动到我想的菜单 2,菜单数为奇数十,能否让最下面的菜单位于顶部

So i have implemented circleLayout.setOnItemSelectedListener but my problem is I am getting clicks for every other child except the first child in the CircleLayout

question

I rotated the circle_layout with below code RotateAnimation rotate = new RotateAnimation(0, 360, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f); rotate.setDuration(10000); rotate.setInterpolator(new LinearInterpolator()); rotate.setRepeatCount(Animation.INFINITE); com.szugyi.circlemenu.view.CircleLayout image= (com.szugyi.circlemenu.view.CircleLayout)findViewById(R.id.circle_layout); image.startAnimation(rotate); Now when I click on...

question

I have three Items in CircleMenu (What, When, Where). It starts from What screen and end/stop at Where screen. It will never scroll from last to first item like circular....

question

How do I rotate Only one child at a time on swipe, like ViewPager.

question

is it possible to connect children to center with radial lines?

question

Add OnScroll Start Interface To Change Second Circular Menu

When filing from 1 quadrant to 3 slopes, the direction of rotation is reversed. To be more specific, Fling from upper right to lower left direction reverses direction. Please check...

bug