An android custom view which looks like the menu in Path 2.0 (for iOS).
I try to realize the stylish menu for android, which could be equal to the iOS version's.
To setup the menu:
I try to realize the stylish menu for android, which could be equal to the iOS version's.
To setup the menu:
CircleMenu circleMenu = (CircleMenu) findViewById(R.id.circle_menu);
for (int i = 0; i < itemCount; i++) {
ImageView item = new ImageView(this);
item.setImageResource(ITEM_DRAWABLES[i]);
finalint position = i;
circleMenu.addItem(item, new OnClickListener() {
@Override
publicvoid onClick(View v) {
Toast.makeText(MainActivity.this, "position:" + position, Toast.LENGTH_SHORT).show();
}
});// Add a menu item
}