如何在android中更改所有布局背景颜色

时间:2015-10-22 17:58:05

标签: android

我是android新手。我想在运行时选择导航抽屉项目(更改背景)时更改我的所有相对布局背景颜色。

1 个答案:

答案 0 :(得分:0)

您只需要从相对布局中获取引用并调用 方法setBackgroundColor()

RelativeLayout layout = (RelativeLayout) findViewById(R.layout.id);       
layout.setBackgroundColor(getResources().getColor(android color or your color));