5

私はアンドロイド phonegap アプリケーションを作っています。
CordovaWebView の下に editText を設定します。キーボードの表示/非表示イベントを取得したい。
ビューの高さを計算しようとしましたが、失敗しました。editText に focus がある場合、キーボードが表示されます。しかし、CordovaWebView は上がり、ビュー サイズは変わりません。そのため、キーボード表示イベントを取得できません。

ビューが上がるのはなぜですか?

これが私のコードの一部です。

MainActivity 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);

res/layout/blank.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>

res/レイアウト/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

「showkeyboard」と「hidekeyboard」のイベントを聞いてみましたか?ソフトキーボードが表示/非表示になるたびに起動する必要があります。

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 に答える