我是android新手。我想在运行时选择导航抽屉项目(更改背景)时更改我的所有相对布局背景颜色。
答案 0 :(得分:0)
您只需要从相对布局中获取引用并调用
方法setBackgroundColor()
RelativeLayout layout = (RelativeLayout) findViewById(R.layout.id);
layout.setBackgroundColor(getResources().getColor(android color or your color));