I have the corollary question to my first (solved) question, SO Android show softkeybard ...
With the sliding keyboard closed, I want my activity to show the keyboard when it gets started.
The same manifest should apply with "stateVisible" set in the manifest for my activity.  Do I need any explicit code with the InputMethodManger?  Again, I have experimented with the obvious methods and flags, but it does not open the keyboard on the phones with sliding keyboards.
The manifest is copied here for convenience:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.mycompany.android.studyIme"
      android:versionCode="1"
      android:versionName="1.0">
    <uses-sdk android:minSdkVersion="7" />
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".StudyImeActivity"
                  android:label="@string/app_name" 
                  android:windowSoftInputMode="stateAlwaysVisible|stateVisible">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>
 
    