如何在片段啓動時打開鍵盤?我已經試過這個代碼:如何在片段中打開鍵盤
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
view =inflater.inflate(R.layout.mylayout,container,false);
TextView TVLarghezza = (TextView) view.findViewById(R.id.larghezza);
TVLarghezza.requestFocus();
InputMethodManager imgr = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
imgr.showSoftInput(view, InputMethodManager.SHOW_IMPLICIT);
return view;
}
但它不起作用。我必須在啓動時打開鍵盤。
我已經已經嘗試過這種方法,但他們只在活動上工作,而不是在片段 – Damien
@Damien,我已經更新了答案 – Alexander