0
사용자 정의보기에얻고, 내가 텍스트 뷰를 확장하고 배경이 그릴 수있는 사용자 지정보기를
<CustomView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/circile_background" />
을 그릴 수 배경색을 변경하고 사용자 정의보기에 배경 색상을 변경하고자하는 방법
public class CustomView extends TextView {
TypedArray typedArray;
public CustomView (Context context) {
super(context);
}
public CustomView (Context context, AttributeSet attrs) {
super(context, attrs);
}
public void setColorLevel(int color) {
// update color here
}
}
여기
는 모두 배경을 유지 하시겠습니까 전 마법사와 색 ...? – Dhruv
감사합니다. 네, 이미지를 유지하고 imagecolor를 변경하고 싶습니다. – Xianwei
'getBackground(). setColorFilter (color, PorterDuff.Mode.SRC); ' –