2012-12-10 11 views
6

ボックスに触れたときにソフトキーボードの表示を自動的に行わずにEditTextボックスを定義しようとしています。私はまた、点滅しているカーソルを表示し、タッチに基づいて動かす必要があります。これは、mText.setInputType(InputType.TYPE_NULL)を使用するだけで、Android 4.0以前は簡単に行うことができます。これは自動ソフトキーボードの表示を抑制する唯一の方法ですが、Android 4.0では点滅するカーソルも抑制します。ただし、カーソルは正しく配置され、mText.getSelectionStart()は最後のタッチ位置を返します。たとえば、 "123"を含むEditTextボックスで "2"と "3"の間をタッチすると、mText.getSelectionStart()はカーソルが表示されていなくても2を正しく返します。その場所にプログラムでカーソルを表示する方法はありますか?ここでAndroid 4.0 EditText(ソフトキーボードとカーソルの位置付けなし)

は私がのEditTextのカーソルの位置をテストするために使用していたコードである:ここでは

public class TestCodeActivity extends Activity implements OnClickListener { 
     private EditText mText; 
     @Override 
     public void onCreate(Bundle savedInstanceState) { 
      super.onCreate(savedInstanceState); 
       getApplicationContext(); 
       setContentView(R.layout.test); 
       findViewById(R.id.Button01).setOnClickListener(this); 
       findViewById(R.id.Button02).setOnClickListener(this); 
       findViewById(R.id.Button03).setOnClickListener(this); 
       findViewById(R.id.Button04).setOnClickListener(this); 
       mText = (EditText) findViewById(R.id.editText1); 
       mText.setInputType(InputType.TYPE_NULL); 
     } 

     @Override 
     public void onClick(View v) { 
      if (v.getTag().equals("Clear")) { 
       mText.setText(""); 
      } else { 
       String buttontag = v.getTag().toString(); 
       String str = mText.getText().toString(); 
       int cursor = mText.getSelectionStart(); 
       if(cursor==str.length()) 
        str = str + buttontag; 
       else 
        str = str.substring(0, cursor) + buttontag + str.substring(cursor, str.length()); 
       mText.setText(str); 
       mText.setSelection(cursor+1); 
       // ---> need code to display blinking cursor at cursor+1 location ??? 
     } 
     } 
    } 

はレイアウトxmlです:

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" > 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="85dp" > 
     <EditText 
      android:id="@+id/editText1" 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      android:layout_weight="0.13" 
      android:ems="10" 
      android:textSize="25sp" > 
      <requestFocus /> 
     </EditText> 
    </LinearLayout> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" > 
     <Button 
      android:id="@+id/Button01" 
      android:layout_width="60dp" 
      android:layout_height="60dp" 
      android:text="1" 
      android:tag="1" 
      android:layout_gravity="center" 
      android:textSize="30sp" /> 
     <Button 
      android:id="@+id/Button02" 
      android:layout_width="60dp" 
      android:layout_height="60dp" 
      android:text="2" 
      android:tag="2" 
      android:layout_gravity="center" 
      android:textSize="30sp" /> 
     <Button 
      android:id="@+id/Button03" 
      android:layout_width="60dp" 
      android:layout_height="60dp" 
      android:text="3" 
      android:tag="3"       
      android:layout_gravity="center" 
      android:textSize="30sp" /> 
     <Button 
      android:id="@+id/Button04" 
      android:layout_width="60dp" 
      android:layout_height="60dp" 
      android:text="Clear" 
      android:tag="Clear"       
      android:layout_gravity="center" 
      android:textSize="30sp" /> 
    </LinearLayout> 

</LinearLayout> 

答えて

13

私は最終的にソフトキーボードを抑制し、まだ取得する方法を考え出しましたEditTextボックスに表示する点滅カーソル。私はonTouchListenerをコード化し、 "mText.setInputType(InputType.TYPE_NULL)"を使用する代わりにキーボードを無効にするためにtrueを返しました。私は正しい位置にカーソルをセットするタッチ位置を取得しなければならなかった。

ここで私が使用したコードは次のとおりです。

mText = (EditText) findViewById(R.id.editText1); 
    OnTouchListener otl = new OnTouchListener() { 
    @Override 
    public boolean onTouch(View v, MotionEvent event) { 
     switch (event.getAction()) { 
     case MotionEvent.ACTION_DOWN: 
      Layout layout = ((EditText) v).getLayout(); 
      float x = event.getX() + mText.getScrollX(); 
      int offset = layout.getOffsetForHorizontal(0, x); 
      if(offset>0) 
       if(x>layout.getLineMax(0)) 
        mText.setSelection(offset);  // touch was at end of text 
       else 
        mText.setSelection(offset - 1); 
      break; 
      } 
     return true; 
     } 
    }; 
    mText.setOnTouchListener(otl); 
+0

あなたは、このソリューションで私の一日保存しました! +1 –

+0

このソリューションは、複数行の編集テキストでは機能しません。複数行の編集テキストの処理方法を教えてください。 – user1213202

+0

@ user1213202:メソッドLayout.getOffsetForHorizo​​ntal(int line、float horiz)の最初のパラメータである 'int offset = layout.getOffsetForHorizo​​ntal(0、x);'に注目してください。複数行のedittextカーソルを移動させたい行のインデックスを決め、それを 'getOffsetForHorizo​​ntal'に渡す必要があります。 – nautilusvn

関連する問題