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

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

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

暂无

代码示例

代码示例来源:origin: wenwenwen888/DouBan_Movie

/**
 * 设置title和主题颜色
 */
private void setTitleAndColor(int item, String title, int color, int styleid) {
  tabAtPosition = item;
  if (MyApplication.NIGHT_MODE) {
    color = getResources().getColor(R.color.colorNight);
    styleid = R.style.NightThemeTransNav;
  }
  viewpager.setCurrentItem(item, false);
  toolbar.setTitle(title);
  toolbar.setBackgroundColor(color);
  navigationview.setBackgroundColor(color);
  user_link.setLinkTextColor(color);
  intent = new Intent();
  intent.putExtra("theme", styleid);
  intent.putExtra("color", color);
}

代码示例来源:origin: filestack/filestack-android

nav.setNavigationItemSelectedListener(this);
nav.setItemTextColor(ColorStateList.valueOf(theme.getAccentColor()));
nav.setBackgroundColor(theme.getBackgroundColor());

代码示例来源:origin: dabutaizha/juzimi

mTabLayout.setSelectedTabIndicatorColor(ResUtil.getColor(R.color.yellow_dark));
mNavigationView.setBackgroundColor(ResUtil.getColor(R.color.colorPrimary));
mNavigationView.setItemTextColor(ResUtil.getColorStateList(R.color.nav_item_text_color_list));
mTabLayout.setSelectedTabIndicatorColor(ResUtil.getColor(R.color.red_bg));
mNavigationView.setBackgroundColor(ResUtil.getColor(R.color.background_night));
mNavigationView.setItemTextColor(ResUtil.getColorStateList(R.color.nav_item_text_color_list_night));

相关文章