How can i attach/join the settings together with it's soft keyboard so that both appears in the Language&Keyboard settings?

    <manifest xmlns:android="http://schemas.android.com/apk/res/android" 
        package="com.example.android.softkeyboard">
    <application android:label="@string/ime_name">
        <service android:name="SoftKeyboard"
                android:permission="android.permission.BIND_INPUT_METHOD">
            <intent-filter>
                <action android:name="android.view.InputMethod" />
            </intent-filter>
            <meta-data android:name="android.view.im" android:resource="@xml/method" />
        </service>

        <activity android:name=".ImePreferences" android:label="@string/settings_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
            </intent-filter>
        </activity>

    </application>
</manifest>
link|improve this question
If you want to show your customized onscreen keyboard's setting, modify the method.xml file so that it becomes something like this. <input-method xmlns:android="schemas.android.com/apk/res/android"; android:settingsActivity="your.app.yourAppSettings"/> – Naung Dec 14 '11 at 11:03
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.