実現したいこと
EditTextへの入力で改行出来る回数を制限したい
発生している問題・分からないこと
https://www.united-bears.co.jp/blog/archives/555
を参考に、onKeyイベントを実装しましたが改行してもonKeyイベントが発生しない状態です。
お知恵を拝借出来ればと思います。
エラーメッセージ
error
1エラーメッセージは特に表示されません。
該当のソースコード
xml
1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 xmlns:tools="http://schemas.android.com/tools" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 android:orientation="vertical" 8 android:background="@color/white" 9 tools:context=".MainActivity"> 10 11 12 <LinearLayout 13 android:layout_width="match_parent" 14 android:layout_height="wrap_content" 15 android:layout_marginTop="40dp" 16 android:orientation="horizontal"> 17 18 <TextView 19 android:id="@+id/textView180" 20 android:layout_width="wrap_content" 21 android:layout_height="44dp" 22 android:layout_marginLeft="30dp" 23 android:text="備考" 24 android:textColor="@color/black_text" 25 android:textSize="@dimen/activity_registration_txt_size" /> 26 27 </LinearLayout> 28 29 <LinearLayout 30 android:layout_width="match_parent" 31 android:layout_height="wrap_content" 32 android:layout_marginTop="10dp" 33 android:orientation="vertical"> 34 35 <EditText 36 android:id="@+id/remarks_text" 37 android:layout_width="1220dp" 38 android:layout_height="220dp" 39 android:layout_marginLeft="30dp" 40 android:gravity="top|left" 41 android:focusable="true" 42 android:focusableInTouchMode="true" 43 android:cursorVisible="false" 44 android:singleLine="false" 45 android:background="@drawable/border_reserve" 46 android:text="" 47 android:textSize="@dimen/activity_registration_txt_size" 48 android:maxLength="200" 49 tools:ignore="Autofill" /> 50 51 </LinearLayout> 52 53 54</LinearLayout>
java
1 remarksText = findViewById(R.id.remarks_text); 2 remarksText.setOnClickListener(new View.OnClickListener() { 3 @Override 4 public void onClick(View v) { 5 hideSoftwareKeyboard(v); 6 // 処理を実装 7 v.setFocusable(true); 8 v.setFocusableInTouchMode(true); 9 boolean focus = v.requestFocus(); 10 if (focus) { 11 showSoftInput(getApplicationContext(), v, 0); 12 } 13 } 14 }); 15 remarksText.setOnKeyListener(new View.OnKeyListener() { 16 17 //コールバックとしてonKey()メソッドを定義 18 @Override 19 public boolean onKey(View v, int keyCode, KeyEvent event) { 20 //イベントを取得するタイミングには、ボタンが押されてなおかつエンターキーだったときを指定 21 if((event.getAction() == KeyEvent.ACTION_DOWN) && (keyCode == KeyEvent.KEYCODE_ENTER)){ 22 //キーボードを閉じる 23 InputMethodManager inputMethodManager = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); 24 inputMethodManager.hideSoftInputFromWindow(remarksText.getWindowToken(), InputMethodManager.RESULT_UNCHANGED_SHOWN); 25 if (((EditText) v).getLineCount() >= 7) { 26 return true; 27 } 28 return true; 29 } 30 31 return false; 32 } 33 }); 34
試したこと・調べたこと
- teratailやGoogle等で検索した
- ソースコードを自分なりに変更した
- 知人に聞いた
- その他
上記の詳細・結果
現状では調査が足りないかもしれません。
onKeyイベントさえ発生すれば解決できると思っています。
補足
Android10
java8.1
回答1件
あなたの回答
tips
プレビュー