如何更改标题栏颜色没有主题

Fri*_*z14 5 android titlebar

如何在不使用主题的情况下更改标题栏的背景颜色.Android中的tnks.

Sun*_*hoo 4

尝试使用以下代码

View titleView = getWindow().findViewById(android.R.id.titlebar);
    if (titleView != null) {
      ViewParent parent = titleView.getParent();
      if (parent != null && (parent instanceof View)) {
        View parentView = (View)parent;
        parentView.setBackgroundColor(Color.RED);
      }
    }
Run Code Online (Sandbox Code Playgroud)


归档时间:

查看次数:

4589 次

最近记录:

10 年,1 月 前