本文整理了Java中android.support.design.widget.BottomNavigationView.getMaxItemCount()
方法的一些代码示例,展示了BottomNavigationView.getMaxItemCount()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。BottomNavigationView.getMaxItemCount()
方法的具体详情如下:
包路径:android.support.design.widget.BottomNavigationView
类名称:BottomNavigationView
方法名:getMaxItemCount
暂无
代码示例来源:origin: willowtreeapps/Hyperion-Android
@NonNull
@Override
public List<ViewAttribute> collect(BottomNavigationView view, AttributeTranslator attributeTranslator) {
final Context context = view.getContext();
final Resources res = context.getResources();
List<ViewAttribute> attributes = new ArrayList<>();
attributes.add(new ViewAttribute<>("MaxItemCount", view.getMaxItemCount()));
attributes.add(Collectors.createColorAttribute(view, "ItemTint", view.getItemIconTintList()));
attributes.add(Collectors.createColorAttribute(view, "ItemTextColor", view.getItemTextColor()));
attributes.add(new ViewAttribute<>("SelectedItemId", new ResourceValue(res, view.getSelectedItemId())));
attributes.add(new ViewAttribute<>("ItemBackgroundRes", new ResourceValue(res, view.getItemBackgroundResource())));
attributes.addAll(Collectors.createMenuAttributes(context, view.getMenu()));
return attributes;
}
}
代码示例来源:origin: jbruchanov/AnUitor
@Override
protected HashMap<String, Object> fillValues(View v, HashMap<String, Object> data, HashMap<String, Object> parentData) {
super.fillValues(v, data, parentData);
BottomNavigationView view = (BottomNavigationView) v;
data.put("ItemBackgroundResource", IdsHelper.getNameForId(view.getItemBackgroundResource()));
data.put("ItemIconTintList", String.valueOf(view.getItemIconTintList()));
data.put("ItemTextColor", String.valueOf(view.getItemTextColor()));
data.put("MaxItemCount", view.getMaxItemCount());
data.put("Menu:", view.getMenu());
return data;
}
}
内容来源于网络,如有侵权,请联系作者删除!