问题
I want to create a view shown in image below
![](https://i0.wp.com/i.stack.imgur.com/4ZODU.png)
回答1:
I think it's very late response, but It can helpful to others as well.
I find a library, reworked on listview and implemented circular list. Library is here and some snippet of code
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);
}
}
}
source
来源:https://stackoverflow.com/questions/26602393/custom-circular-view