android.support.design.widget.BottomNavigationView.getItemBackgroundResource()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(2.0k)|赞(0)|评价(0)|浏览(116)

本文整理了Java中android.support.design.widget.BottomNavigationView.getItemBackgroundResource()方法的一些代码示例,展示了BottomNavigationView.getItemBackgroundResource()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。BottomNavigationView.getItemBackgroundResource()方法的具体详情如下:
包路径:android.support.design.widget.BottomNavigationView
类名称:BottomNavigationView
方法名:getItemBackgroundResource

BottomNavigationView.getItemBackgroundResource介绍

暂无

代码示例

代码示例来源: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;
  }
}

相关文章