Issue
This Content is from Stack Overflow. Question asked by medmjs
I’m using BottomNavigation and add menu to Bottom Navigation then add LottieDrawable to MenuItem
lottieDrawable = new LottieDrawable();
LottieCompositionFactory.fromRawRes(mContext,R.raw.oasis_animated_icon).addListener(new
LottieListener<LottieComposition>() {
@Override
public void onResult(LottieComposition result) {
lottieDrawable.setComposition(result);
}
});
mBinding.bottomNavigation.getMenu().getItem(2).setIcon(lottieDrawable);
How can change MenuItem-Icon size or LottieDrawable Size?
Solution
This question is not yet answered, be the first one who answer using the comment. Later the confirmed answer will be published as the solution.
This Question and Answer are collected from stackoverflow and tested by JTuto community, is licensed under the terms of CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.