제가 하고 싶은건 editText에 멀티라인으로 입력 받으면서 자동개행이 되고 키보드 버튼을 변경하는게 필요합니다..ㅠㅠㅠ

xml EditText

<EditText
                                        android:id="@+id/voc_text_EditText"
                                        android:layout_width="match_parent"
                                        android:layout_height="match_parent"
                                        android:layout_weight="1"
                                        android:background="@android:color/transparent"
                                        android:hint="text"

                                        android:imeOptions="actionDone"
                                        android:maxLength="1000"
                                        android:textSize="12dip" />

 

multi라인으로 입력을 받고 싶은데 자동 개행이 되게 (inputType 을 default로) 하면 imeOption 이 안 먹습니다..ㅠㅠ

키보드가 '완료' 버튼으로 변경이 안되고 '엔터' 버튼으로 그대로 있고요.ㅠㅠ

inputType을 text나 multiLine 으로 변경 하면 imeOption이 적용이 되어서 키보드가 '완료' 버튼으로 변경 되는데

입력하는 텍스트는 자동 개행이 안되고 한줄로만 계속 입력이 됩니다..ㅠㅠㅠ

singleLine은 default (false) 로 되어있고요 , scrollHorizontally 를 적용 해도 다 안됩니다.ㅠㅠ

고수님들 알려주세요 ㅠㅠ