[안드로이드] 배경 색깔 변경 setBackgroundColor(R.color.material) ?
안드로이드 백그라운드 색상 변경을 하려면 그냥 view.setBackgroundColor(Color.RED);요렇게 하던가 style에 정의 된 칼라를요렇게 쓰면 되는데view.setBackgroundColor(R.color.material_grey_300); 안된다! 아래처럼 써야 제대로 불러 올 수 있다. view.setBackgroundColor(mContext.getResources().getColor(R.color.material_grey_300));