本文整理了Java中android.support.design.widget.NavigationView.getBackground()
方法的一些代码示例,展示了NavigationView.getBackground()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。NavigationView.getBackground()
方法的具体详情如下:
包路径:android.support.design.widget.NavigationView
类名称:NavigationView
方法名:getBackground
暂无
代码示例来源:origin: garretyoder/app-theme-engine
if (view.getBackground() != null && view.getBackground() instanceof ColorDrawable) {
final ColorDrawable cd = (ColorDrawable) view.getBackground();
darkTheme = !ATEUtil.isColorLight(cd.getColor());
代码示例来源:origin: xuancao/DynamicSkin
if (view.getBackground() != null && view.getBackground() instanceof ColorDrawable) {
final ColorDrawable cd = (ColorDrawable) view.getBackground();
darkTheme = !Util.isColorLight(cd.getColor());
代码示例来源:origin: materialos/android-icon-pack
mNavView.setNavigationItemSelectedListener(this);
final ColorDrawable navBg = (ColorDrawable) mNavView.getBackground();
final int selectedIconText = DialogUtils.resolveColor(this, R.attr.colorAccent);
int iconColor;
内容来源于网络,如有侵权,请联系作者删除!