簡體   English   中英

單擊EditText不能彈出軟鍵盤

[英]Click EditText can't popup softkeyboard

我使用EditText打開一個Activity,當我停留在該Activity中時,后台的Service將啟動一個帶有標志的新其他Activity:

intent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT
            | Intent.FLAG_ACTIVITY_NEW_TASK);

關閉新的“活動”后,單擊“ editText”將不再顯示軟鍵盤。

一旦對我有用,您可以嘗試一下。

final AlertDialog.Builder alert = new AlertDialog.Builder(getActivity());
final EditText input = new EditText(getActivity());
alert.setView(input);
final AlertDialog dialog = alert.show();
input.setOnFocusChangeListener(new OnFocusChangeListener() {
    @Override
    public void onFocusChange(View v, boolean hasFocus) {
         if(hasFocus) {
             dialog.getWindow().setSoftInputMode(
                 WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE
             );
         }
    }
});

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM