如何在没有任何Helper或proGuard的情况下通过Google物料依赖com.google.android.material:material:1.0.0
轻松删除BottomNavigationView的所有动画?
答案 0 :(得分:1)
BottomNavigationView
在默认情况下具有多种效果,例如,如果选择了菜单项,则水平翻译和较大的文本。<com.google.android.material.bottomnavigation.BottomNavigationView
...
app:itemHorizontalTranslationEnabled="false"/>
app:itemHorizontalTranslationEnabled="false"
<com.google.android.material.bottomnavigation.BottomNavigationView
...
app:labelVisibilityMode="labeled"/>
dimens
中添加dimens.xml
来使用与非活动菜单相同的文本大小。这样,我们几乎没有动画的BottomNavigationView <?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<dimen name="design_bottom_navigation_active_text_size"
tools:override="true">12sp</dimen>
</resources>
奖励问题
但是,还有另一个问题。如果菜单文本为长文本怎么办?如果它由2个字组成怎么办?
如果这是您的问题,则在选择菜单时,您会看到修剪的长文本。 (请看第三个菜单)
这是我尝试BottomNavigationView
void selectFragment(MenuItem item) {
item.setChecked(true);
int itemID = item.getItemId();
if (itemID == R.id.menu_a) {
pushFragment(MenuAFragment.newInstance("MENU A"));
}
else if (itemID == R.id.menu_b) {
pushFragment(MenuAFragment.newInstance("MENU B"));
}
else if (itemID == R.id.menu_c) {
pushFragment(MenuAFragment.newInstance("MENU C"));
}
else if (itemID == R.id.menu_d) {
pushFragment(MenuAFragment.newInstance("MENU D"));
}
else {
pushFragment(MenuAFragment.newInstance("MENU E"));
}
/**** START FROM HERE ****/
TextView largeTextView = bottomNavigationView.findViewById(itemID)
.findViewById(com.google.android.material.R.id.largeLabel);
TextView smallTextView = bottomNavigationView.findViewById(itemID)
.findViewById(com.google.android.material.R.id.smallLabel);
smallTextView.setVisibility(View.VISIBLE);
largeTextView.setVisibility(View.GONE);
}
基本上,我们只需要隐藏largeTextView
并显示smallTextView
想知道更多吗?只需查看此仓库DisableShiftMode