本文整理了Java中android.support.design.widget.NavigationView.getItemBackground()
方法的一些代码示例,展示了NavigationView.getItemBackground()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。NavigationView.getItemBackground()
方法的具体详情如下:
包路径:android.support.design.widget.NavigationView
类名称:NavigationView
方法名:getItemBackground
暂无
代码示例来源:origin: square/assertj-android
public NavigationViewAssert hasItemBackground(Drawable itemBackground) {
isNotNull();
Drawable actualItemBackground = actual.getItemBackground();
assertThat(actualItemBackground) //
.overridingErrorMessage("Expected item background <%s> but was <%s>.", itemBackground,
actualItemBackground) //
.isEqualTo(itemBackground);
return this;
}
}
代码示例来源:origin: willowtreeapps/Hyperion-Android
@NonNull
@Override
public List<ViewAttribute> collect(NavigationView view, AttributeTranslator attributeTranslator) {
List<ViewAttribute> attributes = new ArrayList<>();
attributes.add(new ViewAttribute<>("HeaderCount", view.getHeaderCount()));
attributes.add(Collectors.createColorAttribute(view, "ItemTextColor", view.getItemTextColor()));
attributes.add(Collectors.createColorAttribute(view, "ItemIconTint", view.getItemIconTintList()));
attributes.add(new ViewAttribute<Void>("ItemBackground", view.getItemBackground()));
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);
NavigationView view = (NavigationView) v;
data.put("HeaderCount", view.getHeaderCount());
data.put("ItemBackground:", view.getItemBackground());
data.put("ItemIconTintList", String.valueOf(view.getItemIconTintList()));
data.put("ItemTextColor", String.valueOf(view.getItemTextColor()));
data.put("Menu:", view.getMenu());
return data;
}
}
内容来源于网络,如有侵权,请联系作者删除!