FixedActionMenuItem

constructor(@NonNull context: Context, @IdRes itemId: Int, @DrawableRes drawableResId: Int, @StringRes labelResId: Int)

Create fixed menu item.

Parameters

context

Context used for retrieving drawable with drawableResId from resources.

itemId

Id used to identify this menu item.

drawableResId

Resource id of the menu item's icon.

labelResId

resource id of the menu item's label.


constructor(@NonNull context: Context, @IdRes itemId: Int, @DrawableRes drawableResId: Int, label: String)

Create fixed menu item.

Parameters

context

Context used for retrieving drawable with drawableResId from resources.

itemId

Id used to identify this menu item.

drawableResId

Resource id of the menu item's icon.

label

Label of the menu item.


constructor(@IdRes itemId: Int, @NonNull icon: Drawable, @NonNull label: String)

Create fixed menu item.

Parameters

itemId

Resource id representing menu item.

icon

Icon for the menu item.

label

Label of the menu item.