5

我正在制作 android phonegap 应用程序。
我在 CordovaWebView 下设置了 editText。我想获得键盘显示/隐藏事件。
尝试计算视图高度,但失败。当 editText 具有焦点时,将显示键盘。但是 CordovaWebView 上升了,并且视图大小没有改变。所以我无法获得键盘显示事件。

为什么视图会上升?

这是我的部分代码。

主活动 onCreateMethod()

int layoutId = R.layout.blank;
layout = new LinearLayout(this);
setContentView(layoutId);
layout.setOrientation(LinearLayout.VERTICAL);

textedit = ((Activity) this).getLayoutInflater().inflate(R.layout.main,null);

layout.addView((View) appView.getParent());
layout.addView(textedit);

layout.getChildAt(0).setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, 1));
setContentView(layout);

资源/布局/空白.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">
</LinearLayout>

资源/布局/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/editText1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
</LinearLayout>

请帮忙....

4

1 回答 1

3

Have you tried listening for the "showkeyboard" and "hidekeyboard" events? They should be fired every time the soft keyboard is show/hidden.

document.addEventListener("showkeyboard", function() {
    console.log("Yay the keyboard is here");
}, false);
document.addEventListener("hidekeyboard", function() {
    console.log("Boo the keyboard is gone");
}, false);
于 2012-10-31T18:36:16.760 回答