1

scrollView 内にボタンがあります。ボタンをクリックすると、ボタンがクリックされるとすぐにソフトキーボードが表示されるように PopupWindow が必要です。これは私のコードが今日どのように見えるかです:

final Button b = (Button) findViewById(R.id.button);

        b.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {

                LayoutInflater layoutInflater = (LayoutInflater) getBaseContext().getSystemService(LAYOUT_INFLATER_SERVICE);
                View popupView = layoutInflater.inflate(R.layout.popup, null);
                final PopupWindow popupWindow = new PopupWindow(popupView,WindowManager.LayoutParams.MATCH_PARENT,WindowManager.LayoutParams.MATCH_PARENT,true);
                popupWindow.showAtLocation(v.getRootView(), Gravity.FILL, 0, 0);

                //Bring soft keyboard up : NOT WORKING
                final InputMethodManager mInputMethodManager = (InputMethodManager) getBaseContext().getSystemService(Context.INPUT_METHOD_SERVICE);
                EditText editText = (EditText) popupView.findViewById(R.id.editText);
                mInputMethodManager.showSoftInput(editText, 0);

            }
        });

私のレイアウトXMLは次のようになります:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <EditText
        android:id="@+id/yourViewsEditText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:hint="Your Views"
        >
    </EditText>



</RelativeLayout>

wrap_content の代わりに fill_parent を試すと、画面全体を埋めることから始まります。私はこのようなことを達成しようとしています:ここに画像の説明を入力

4

2 に答える 2

1

次のようにキーボードの高さを取得できます。

myLayout.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {

                @Override
                public void onGlobalLayout() {
                    // TODO Auto-generated method stub
                    Rect r = new Rect();
                    parent.getWindowVisibleDisplayFrame(r);

                    int screenHeight = parent.getRootView().getHeight();
                    int heightDifference = screenHeight - (r.bottom - r.top);
                    loadDialog(heightDifference);

                }
            });

次に、キーボードの高さとデバイスの幅で popupwindow をロードできます。

public void loadDialog(int height)
{
Display mDisplay = activity.getWindowManager().getDefaultDisplay();
int width  = mDisplay.getWidth();

        //load the popup window with the height and width...

}
于 2013-10-22T07:39:01.517 に答える