我正在尝试定义一个 EditText 框,而没有在触摸框时自动显示软键盘。我还需要根据触摸显示和移动闪烁的光标。在 Android 4.0 之前,这很简单,只需使用 mText.setInputType(InputType.TYPE_NULL)。这是抑制自动软键盘显示的唯一方法,但在 Android 4.0 中它也抑制闪烁光标。但是,光标确实定位正确,并且 mText.getSelectionStart() 确实返回了最后一个触摸位置。例如,如果我在包含“123”的 EditText 框中触摸“2”和“3”之间,即使没有显示光标,mText.getSelectionStart() 也会正确返回 2。有没有办法以编程方式在该位置显示光标?
这是我用来测试 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>