Custom all-round view

I want to create the view shown in the image below

enter image description here

Please provide any help.

thanks

+5
source share
5 answers

I think this is a very late answer, but it can help others as well.

I find a library redesigned in listview and implemented a circular list. Library here and some code snippet

public void changeGroupFlag(Object obj) throws Exception { Field[] f = obj.getClass().getSuperclass().getSuperclass().getSuperclass().getDeclaredFields(); // Mapping array members for (Field tem : f) { if (tem.getName().equals("mGroupFlags")) { tem.setAccessible(true); Integer mGroupFlags = (Integer)tem.get(obj); int newGroupFlags = mGroupFlags & 0xfffff8; tem.set(obj, newGroupFlags); } } } 

a source

enter image description here

Hope this helps.

Happy coding ...

+7
source

Check these links (git hub) and get the source code and try to figure it out so that u can customize your requirement

Android-Wheel-Menu
Android CircleMenu
CircularFloatingActionMenu

+3
source

http://www.raywenderlich.com/9864/how-to-create-a-rotating-wheel-control-with-uikit is a tutorial on creating a circular wheel. What you need to do corresponds to the same mathematics and physics in android in order to realize this semicircular view.

And to implement a custom view in android see this . Even the sample is very similar to what you want.

This is a very good collector, please submit it and add the android playground to it . At the same time, I will try to implement it.

Please ask me. If you need help. :)

+2
source

Try this link below. It can help you.

https://github.com/daCapricorn/ArcMenu

and make a list of circular lists.

Follow this working code. Code provided by Samsung

perhaps this will work for your problems.

http://developer.samsung.com/android/samples/Circle-Launcher

+1
source
+1
source

Source: https://habr.com/ru/post/1205663/


All Articles