Abra o teclado virtual programaticamente

Tenho uma atividade sem widgets filhos e o arquivo xml correspondente é,

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/myLayout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:focusable="true"
>
</LinearLayout>

e eu quero abrir o teclado virtual programaticamente enquanto a atividade começa. e o que eu tentei até agora é

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
    if (inputMethodManager != null) {
        inputMethodManager.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
    }

ê-me algumas orientaçõe

questionAnswers(19)

yourAnswerToTheQuestion