Question

I'm trying to make a menu like Prixing. I've already implemented the code, the only thing i needed to know who to make that look and feel to base my app upon, i.e, the content and formatting of the xml layout of the fly-out menu. Is that a custom Listview and adapter with different layouts (sections and items) or it's like a menu with customizable items?

Was it helpful?

Solution

I guess Sliding Menu suits your purpose.

Sample code :

        SlidingMenu menu = new SlidingMenu(this);
        menu.setMode(SlidingMenu.LEFT);
        menu.setTouchModeAbove(SlidingMenu.TOUCHMODE_FULLSCREEN);
        menu.setShadowWidthRes(R.dimen.shadow_width);
        menu.setShadowDrawable(R.drawable.shadow);
        menu.setBehindOffsetRes(R.dimen.slidingmenu_offset);
        menu.setFadeDegree(0.35f);
        menu.attachToActivity(this, SlidingMenu.SLIDING_CONTENT);
        menu.setMenu(R.layout.menu);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top