-
[Android] EditText 밑줄 없애기Android 2020. 6. 23. 15:00반응형
<EditText android:id="@+id/et_title" android:hint="입력해주세요" android:textSize="14sp" />
android:background="@null" 추가
<EditText android:id="@+id/et_title" android:hint="입력해주세요" android:textSize="14sp" android:background="@null" />
반응형'Android' 카테고리의 다른 글
[Android] Adapter에서 Context 사용하려 할 때 (0) 2020.06.23 [Android] 갤러리에서 이미지 선택 후 이미지뷰에서 보여주기 (0) 2020.06.23 [Android] Kotlin에서 정규식 사용하여 숫자만 추출 (0) 2020.06.22 [Android] Android Studio 코드 자동정렬 기준 길이 늘리는 방법 / 기준선 넓게 잡기 (0) 2020.06.22 [Android] How to center a two-line text in a One TextView? 한개의 텍스트뷰에서 라인 2개 이상일 때 가운데 정렬 (0) 2020.06.22