cutom 썸네일형 리스트형 [Android] EditText Selection control EditText에서 특정 Selection 부분에 대해 제어를 하고 싶을 경우 참고 하세요. public class SelectionEditText extends EditText { public SelectionEditText(Context context) { super(context); } public SelectionEditText(Context context, AttributeSet attrs) { super(context, attrs); } public SelectionEditText(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); } @Override protected void.. 더보기 [Android] NavigationView 커스텀화 NavigationView를 커스텀화 하기에 좋은 설명이 있어서 공유하고자 글을 씁니다. itemBackground, itemIconTint and itemTextColor are simple xml-attributes that can be set, though you have to use a custom prefix instead of the android: one.Example So if you wan't to customize the color of the text (e.g. pink when unchecked and teal when checked) you should use a ColorStateList.ExampleCreate a new *.xml file in /res/color - let'.. 더보기 이전 1 다음