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

x33g5p2x  于2022-01-24 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(147)

本文整理了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;

相关文章