fune/mobile/android/android-components/components/browser/menu2
Tiger Oakes 10d01665c7 [components] Add menu2 recycler view adapter
MenuCandidateListAdapter converts MenuCandidate items into a list of
menu items
2020-05-25 12:31:38 -07:00
..
src [components] Add menu2 recycler view adapter 2020-05-25 12:31:38 -07:00
build.gradle [components] For https://github.com/mozilla-mobile/android-components/issues/6261 - Move browser.menu2 to concept-menu2 2020-05-12 10:29:09 -07:00
lint.xml [components] For https://github.com/mozilla-mobile/android-components/issues/5373 - Add menu2 component 2020-01-20 11:26:12 -08:00
proguard-rules.pro [components] For https://github.com/mozilla-mobile/android-components/issues/5373 - Add menu2 component 2020-01-20 11:26:12 -08:00
README.md [components] For https://github.com/mozilla-mobile/android-components/issues/5373 - Add menu2 component 2020-01-20 11:26:12 -08:00

Android Components > Browser > Menu 2

A generic menu with customizable items primarily for browser toolbars.

This replaces the browser-menu component.

Usage

Setting up the dependency

Use Gradle to download the library from maven.mozilla.org (Setup repository):

implementation "org.mozilla.components:browser-menu2:{latest-version}"

MenuController

Sample code can be found in Sample Toolbar app.

There are multiple properties that you customize of the menu browser by just adding them into your dimens.xml file.

<resources xmlns:tools="http://schemas.android.com/tools">

   <!--Change how rounded the corners of the menu should be-->
    <dimen name="mozac_browser_menu_corner_radius" tools:ignore="UnusedResources">4dp</dimen>

    <!--Change how much shadow the menu should have-->
    <dimen name="mozac_browser_menu_elevation" tools:ignore="UnusedResources">4dp</dimen>

    <!--Change the width of the menu-->
    <dimen name="mozac_browser_menu_width" tools:ignore="UnusedResources">250dp</dimen>

    <!--Change the top and bottom padding of the menu-->
    <dimen name="mozac_browser_menu_padding_vertical" tools:ignore="UnusedResources">8dp</dimen>

</resources>

License

This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/