机器人:windowSoftInputMode =" stateAlwaysVisible" - 没有任何EditText导致奇怪的行为,如D-pad

时间:2015-01-07 23:58:31

标签: android android-layout android-activity android-softkeyboard

由于我在AndroidManifest上使用了android:windowSoftInputMode =“stateAlwaysVisible”属性,因此我打开了一个键盘打开的活动。 但是在这个活动中我没有任何编辑文本(只有一个按钮),我需要读取用户输入的每个字符(每次一次)。 所以我重写了dispatchKeyEvent以读取每个字符。

问题在于,由于键盘正在显示且没有一个编辑文本,因此当点击任何角色时,Android OS类型会选择屏幕上的按钮(或任何其他视图)。这个选择是我使用D-pad的那种。 如果按下后退按钮,它将从后面的活动中“选择”任何其他视图。

我认为由于没有编辑文本可以使用键盘,因此活动不知道如何处理键入的字符。

我在Tiny服务器上附加了一个简单的项目,其中包含两个可用作样本的活动来重现问题:http://s000.tinyupload.com/?file_id=70317553185010262971

还在TinyPic附上了截图:

以下是我的所有代码:

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testbug"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="14"
    android:targetSdkVersion="19" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.testbug.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <activity android:name="com.example.testbug.TestActivity"
        android:windowSoftInputMode="stateAlwaysVisible" />
</application>

</manifest>

MainActivity.java(1º活动)

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainActivity extends Activity {

Button btnStart;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    btnStart = (Button) findViewById(R.id.btnStart);

    btnStart.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent i = new Intent(getApplicationContext(), TestActivity.class);
            startActivity(i);
        }
    });
}
}

TestActivity.java(2º活动)

import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.inputmethod.InputMethodManager;
import android.widget.Button;
import android.widget.TextView;

public class TestActivity extends Activity {

TextView tvType;
Button testButton;
int count = 0;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_count);

    tvType = (TextView) findViewById(R.id.tv_type);
    testButton = (Button) findViewById(R.id.btnTest);
}

@Override
public boolean dispatchKeyEvent(KeyEvent event) {

    count++;
    if(count==6){
        hideKeyboard();
    }

    return super.dispatchKeyEvent(event);
}

private void hideKeyboard() {
        InputMethodManager inputManager = (InputMethodManager)  getSystemService(Activity.INPUT_METHOD_SERVICE);
        inputManager.toggleSoftInput(0, InputMethodManager.HIDE_IMPLICIT_ONLY);
}
}

布局:

activity_main.xml中

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:gravity="center">

<Button 
    android:id="@+id/btnStart"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Start"/>

</LinearLayout>

activity_count.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:gravity="center_horizontal" >

    <Button 
    android:id="@+id/btnTest"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="TestButton"/>

<TextView
    android:id="@+id/tv_type"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceMedium" 
    android:text="Press any key 3 times to Hide keyboard\n Then Press Back button. The same behavior of selection of button will happens on back activity" />

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

dispatchKeyEvent仅适用于物理按钮 - 想想Blackberry。你有很多工作要做。

首先,在android中键盘由视图拥有,而不是由应用拥有。因此,一些视图将获得键盘事件。此视图必须在onCreateInputConnection()中返回非NULL值,并在数据来自键盘时调用该对象。

其次,您不会总是获得个别关键事件。大多数Android键盘一次工作。对于自动更正功能和Swyping尤其如此。您需要在设计中考虑这一点。

第三,您需要从编辑文本中实现键盘所需的所有功能。这意味着正确支持撰写文本,光标移动通知等。如果您的反应与预期不同,您可能会搞砸自动完成和swype功能并开始从键盘获得非常奇怪(和错误)的结果。

真的,如果你真的要做任何类型的单词输入,我强烈建议不要这样做。如果您只是使用字符作为非单词,您应该告诉它您的视图是NO_SUGGESTIONS并且输入类型为NULL,因此键盘应该进入虚拟模式 - 尽管没有承诺。