Quantcast
Channel: Kyogs
Viewing all articles
Browse latest Browse all 18

Stylish menu in Android

$
0
0
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:


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
}



Viewing all articles
Browse latest Browse all 18

Trending Articles