現在、JavaにてEditText欄に対するInputFilterを使用した文字数制限フィルタ機能を作成しています。
(サロゲートペア文字が使用される可能性があり、レイアウトファイル(xml)にmaxLengthを記述する方法が使えない為)
ネットを参考に現在下記のように実装しているのですが、サロゲートペア文字を含む文字列をコピーペーストする際に、途中までで切れた状態でペーストされてしまいます。
【達成したいこと】
・キーボード入力、コピーペーストによる入力を問わず全ての文字種を1文字としてカウントするInputFilterを作りたい。
・最大文字数を超える文字が入力またはコピーペーストされた際は入力を無効とする。
拙いコードで大変恐縮ですが、アドバイスを頂けますと幸いです。
Java
1public class TestFilter implements InputFilter { 2 private final int mMax; 3 4 public TestFilter(int max) { 5 mMax = max; 6 } 7 8 public CharSequence filter(CharSequence source, int start, int end, Spanned dest, 9 int dstart, int dend) { 10 11 System.out.println("###DEBUG### ============================== "); 12 System.out.println("###DEBUG### source : " + source); 13 System.out.println("###DEBUG### start : " + start); 14 System.out.println("###DEBUG### end : " + end); 15 System.out.println("###DEBUG### dest : " + dest); 16 System.out.println("###DEBUG### dstart : " + dstart); 17 System.out.println("###DEBUG### dend : " + dend); 18 System.out.println("###DEBUG### ============================== "); 19 20 // 元々入力されていた文字列 21 int destLength = dest.length(); 22 int enterdTextLength = dest.toString().codePointCount(0, dest.length()); // 23 24 // 入力した文字数 25 int sourceLength = source.length(); 26 int inputTextLength = source.toString().codePointCount(0, source.length()); 27 28 if (enterdTextLength > mMax) { 29 return ""; 30 } 31 32 // 保持する文字数 33 int keep = mMax - (enterdTextLength - (dend - dstart)); 34 35 if (keep <= 0) { 36 return ""; 37 } else if (keep > end - start) { 38 return null; // keep original 39 } else { 40 keep += start; 41 if (Character.isHighSurrogate(source.charAt(keep - 1))) { 42 return source.subSequence(start, keep + 1); 43 } 44 return source.subSequence(start, keep); 45 } 46 } 47 48 public int getMax() { 49 return mMax; 50 } 51
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。