本文整理了Java中android.support.design.widget.BottomNavigationView.getContext()
方法的一些代码示例,展示了BottomNavigationView.getContext()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。BottomNavigationView.getContext()
方法的具体详情如下:
包路径:android.support.design.widget.BottomNavigationView
类名称:BottomNavigationView
方法名:getContext
暂无
代码示例来源: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: flipkart-incubator/proteus
@Override
public void handleAttributeResource(V view, AttributeResource attribute) {
TypedArray a = attribute.apply(view.getContext());
int id = a.getResourceId(0, 0);
view.inflateMenu(id);
}
代码示例来源:origin: flipkart-incubator/proteus
@Override
public void handleStyleResource(V view, StyleResource style) {
TypedArray a = style.apply(view.getContext());
int id = a.getResourceId(0, 0);
view.inflateMenu(id);
}
});
代码示例来源:origin: flipkart-incubator/proteus
@Override
public void handleResource(V view, Resource resource) {
Integer id = resource.getInteger(view.getContext());
if (null != id) {
view.inflateMenu(id);
}
}
内容来源于网络,如有侵权,请联系作者删除!