更新
这是Android SDK的WTF,如果targetSdkVersion是15,没问题。 但是在16之后,将不会响应setOnKeyListener。
并且在targetSdkVersion 15中,它将提高两次。 嘿beee u android。
http://developer.android.com/reference/android/view/KeyEvent.html
特别是,默认软件键盘永远不会向任何针对Jelly Bean或更高版本的应用程序发送任何键事件,并且只会发送一些按下删除键和返回键的事件给目标为Ice Cream Sandwich或更早版本的应用程序
更新
请告诉我你为什么要投票支持我的帖子。
问题
我能知道软键盘的输入是什么吗?
不是OnKeyListener
,仅适用于硬件键盘。
我需要软键盘。
不是TextWatcher
,仅适用于已更改的文字。
例如,在EditText中,当getSelectionStart
为0时,我单击软键盘删除按钮。没有任何改变。
我的代码: 的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="www.ilivebox.demo"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17"/>
<application
android:label="@string/app_name"
android:icon="@drawable/ic_launcher">
<activity
android:name="MyActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
布局 main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<EditText
android:id="@+id/memo_text_segment"
android:hint="add new here.."
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
MyActivity.java
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.KeyEvent;
import android.view.View;
import android.widget.EditText;
public class MyActivity extends Activity {
private EditText mEditText;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mEditText = (EditText) findViewById(R.id.memo_text_segment);
mEditText.setOnKeyListener(new View.OnKeyListener() {
@Override
public boolean onKey(View v, int keyCode, KeyEvent event) {
Log.d("KeyCode: " + keyCode + " " + event.getCharacters(), "..........");
return false;
}
});
}
}
答案 0 :(得分:1)
您捕获KeyEvent,然后检查其密钥代码。
if (event.getKeyCode() == KeyEvent.ACTION_DOWN)