3

タブホストがあり、タブごとにアクティビティグループがあります。

アプリが起動して editText を押すと、キーボードが出てきます。子アクティビティを開始してからメイン アクティビティに戻ると、キーボードが表示されなくなりました。

サブアクティビティを開始するための私のコード

Intent i = new Intent(this, ShowAddFoodToSelection.class).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

View view = ActivityGroupMeal.group.getLocalActivityManager().startActivity(DataParser.activityIDMeal, i).getDecorView();

ActivityGroupMeal.group.setContentView(view);

メインアクティビティに戻るコード

ActivityGroupMeal.group.back();

そして、アクティビティ グループのバック コード:

public void back() {
        try {
            // if we set history.size() > 0 and we press back key on home
            // activity
            // and then on another activity we wont get back!
            if (history.size() > 1) {
                history.remove(history.size() - 1);
                // call the super.setContent view! so set the real view
                super.setContentView(history.get(history.size() - 1));
            } else {

            }
        } catch (Exception e) {
            if (history.size() >= 0)
                super.setContentView(history.get(0));
        }
    }

私は次のコードでを設定しonClickListenerました:editText

private void keyboardShow() {
        InputMethodManager inputManager = (InputMethodManager) ActivityGroupMeal.group.getSystemService(Context.INPUT_METHOD_SERVICE);

        boolean test = inputManager.showSoftInput(editTextSearch, InputMethodManager.SHOW_IMPLICIT);

        Toast.makeText(this, "show keyboard " + test, Toast.LENGTH_SHORT).show();
    }

初めて true を返し、childactivity から戻ったときに false を返します。

他のタブをクリックしてから最初のタブに戻り、editText をクリックすると、再び true が返されます。

編集: 一時的な修正をonClicklistener行い、editTextbox に設定してから、キーボードにコードを表示します

InputMethodManager inputManager = (InputMethodManager) ActivityGroupMeal.group
                .getSystemService(Context.INPUT_METHOD_SERVICE);

        // show keyboard , when it fails first switch tab and then try again
        if (!inputManager.showSoftInput(null, InputMethodManager.SHOW_FORCED)) {
            // switch from tab and back
            // the keyboard wont show if we dont do this
            ShowHomeTab parentActivity;
            parentActivity = (ShowHomeTab) this.getParent().getParent();
            parentActivity.goToTab(DataParser.activityIDTracking);
            parentActivity.goToTab(DataParser.activityIDShowFoodList);

            inputManager.showSoftInput(null, InputMethodManager.SHOW_FORCED);
        }

childactivity から戻ったら、キーボードが表示される前にコードでタブを切り替える必要があります =/

誰かがそれについて説明しましたか?

4

2 に答える 2

4

アクティビティ グループを使用したアプリケーションでは、以下のコードを使用して同じ問題を解決しました

YOUR_EDIT_TEXT.setOnEditorActionListener(new OnEditorActionListener() {

            public boolean onEditorAction(TextView v, int actionId,
                    KeyEvent event) {
                if (event != null&& (event.getKeyCode() == KeyEvent.KEYCODE_ENTER)) {
                    InputMethodManager in = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                    in.hideSoftInputFromWindow(searchName
                            .getApplicationWindowToken(),
                            InputMethodManager.HIDE_NOT_ALWAYS);
                }
                return false;
            }
        });

そしてそれはうまくいきました。このコード スニペットを試してみてください。

于 2012-06-15T12:08:55.010 に答える
1

requestFocus />の定義に要素を追加してみてくださいEditText。つまり、

<EditText android:id="@+id/edit_text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="text" >
        <requestFocus />
</EditText>

解決しない場合は、back()呼び出してメソッドにフォーカスをリクエストしますrequestFocus()

于 2012-06-12T08:21:34.997 に答える