일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- FRAGMENT
- Activity
- 안드로이드 스튜디오
- Dialog
- firebase
- RealtimeDB
- button
- EditText
- ROOM
- Imageview
- 밑줄
- Android
- firebasefunctions
- 랜덤ID
- OutlinedButton
- 안드로이드
- lifecyclescope
- MaterialButton
- textview
- androidstudio
- 코틀린
- ButtonWithButton
- 뷰바인딩
- 팝업액티비티
- Kotlin
- BottomSheetDialog
- ArrayList
- 안드로이드스튜디오
- nav_graph
- ViewModel
- Today
- Total
목록안드로이드앱/EditText (9)
안드로이드 앱 개발
xml파일에서 EditText의 inputType을 text로 설정했더니 줄바꿈기능이 없어져서 검색을 해보았다. 여러 줄의 텍스트를 입력하고 싶을 때는 textMultiLine 속성 추가해야한다. android:inputType="textMultiLine"
//TextView 처럼 edittext.text = "테스트" 일것 같지만 에러가 뜬다. Edittext에 변수 값을 입력하려면 java와 같이 setText()함수를 활용해야한다. ex) contentEdittext.setText(memoContent)

몇 가지 검색해봤지만 stack overflow에서 해답을 찾을 수 있었다. 기본적으로 안드로이드에서 focus를 가질 수 있는 모든 뷰들에게서 clearFocus를 호출하면 focus를 가질 수 있는 첫 번째 뷰에 focus를 준다고 한다. 따라서, edittext에 clearfocus를 했는데도 focus가 살아있다면 그 edittext가 해당 액티비티의 첫번째 focusable view이기 때문 이를 해결하기 위해서는 parentLayout에 아래 두 속성을 추가해주고 android:focusable="true" android:focusableInTouchMode="true" binding.contentEdittext.clearFocus() binding.memoTitleEt.clearFocus()..
Edittext의 maxlines가 속성이 적용되기 위해서는 반드시 inputType도 설정이 되어야 한다고 함. android:inputType="text" android:maxLines="1"
1. 먼저 edittext에 이미지를 넣으려면 xml 속성에서 android:drawableLeft="@drawable/serach_maingrey" 위 속성을 추가하면 된다. (오른쪽에 넣으려면 drawableRight) However, 이미지 크기가 원본 이미지 그대로 들어가기 때문에 조절이 필요하다. 2. 따라서, drawble에 크기까지 지정한 xml파일을 만든뒤 적용해준다. drawable_left_image_search.xml 3. Edittext에서 정해주기 android:drawableLeft="@drawable/drawable_left_image_search" android:drawablePadding="10dp"
1. 밑줄을 없애고 싶으면 xml에서 아래와 같이 background 값에 @null을 추가해주자 2. 밑줄의 색상을 바꾸고 싶다면 android:backgroundTint="@color/mainBlue"
해당 화면을 띄웠을 때, 자동으로 포커스를 주고 키보드를 띄우는 java code editText.requestFocus(); //focus 주기 // 키보드 띄우기 InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_IMPLICIT_ONLY); 반대로 키보드 내리는 java code InputMethodManager immhide = (InputMethodManager) getSystemService(Activity.INPUT_METHOD_SERVICE)..
//해당 edittext에 포커스가 있다면, 없애준다. edittext.clearfocus(); // 특정 edittext에 포커스를 주고 싶을 때, 사용하는 메소드 edittext.requestfocus();
방법은 간단한다. editText.setOnFocusChangeListener(new View.OnFocusChangeListener() { @Override public void onFocusChange(View v, boolean hasFocus) { if (hasFocus) { //edittext에 focus가 있을 때 } else { //focus가 없을 때 } } });