1

hereと呼ばれるスペルチェッカーサービスを実装しようとしていますSampleSpellCheckerServiceが、チュートリアルが不完全であり、そのソースコードが利用できないようです。

setSuggestionsFor()ここで強調表示されているように、アクティビティのメソッドでスペル チェッカー サービスからセッションを取得する方法に苦労しています。

public class SpellCheckerSettingsActivity extends AppCompatActivity implements SpellCheckerSession.SpellCheckerSessionListener {

    private static final String LOG_TAG = SpellCheckerSettingsActivity.class.getSimpleName();

    private TextView textView = null;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_spell_checker_settings);

        final EditText editText = (EditText)findViewById(R.id.editText);

        textView = (TextView)findViewById(R.id.textView);

        Button button = (Button)findViewById(R.id.button);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                fetchSuggestionsFor(editText.getText().toString());
            }
        });

        startService(new Intent(this, SampleSpellCheckerService.class));

    }

    private void fetchSuggestionsFor(String input){

        Log.d(LOG_TAG, "fetchSuggestionsFor(\"" + input + "\")");

        /***************************************************
         * 
         * This line is invalid. What do I replace it with?
         * 
         ***************************************************/
        SpellCheckerSession session = SampleSpellCheckerService.getSession();

        TextInfo[] textInfos = new TextInfo[]{ new TextInfo(input) };
        int suggestionsLimit = 5;
        session.getSentenceSuggestions(textInfos, suggestionsLimit);

    }

    @Override
    public void onGetSuggestions(SuggestionsInfo[] results) {

        Log.d(LOG_TAG, "onGetSuggestions(" + results + ")");

        runOnUiThread(new Runnable() {
            @Override
            public void run() {
                textView.setText("Suggestions obtained (TODO - get from results[])");
            }
        });

    }

    @Override
    public void onGetSentenceSuggestions(SentenceSuggestionsInfo[] results) {

        Log.d(LOG_TAG, "onGetSentenceSuggestions(" + results + ")");

        if (results != null) {
            final StringBuffer sb = new StringBuffer("");
            for (SentenceSuggestionsInfo result : results) {
                int n = result.getSuggestionsCount();
                for (int i = 0; i < n; i++) {
                    int m = result.getSuggestionsInfoAt(i).getSuggestionsCount();

                    for (int k = 0; k < m; k++) {
                        sb.append(result.getSuggestionsInfoAt(i).getSuggestionAt(k))
                                .append("\n");
                    }
                    sb.append("\n");
                }
            }

            runOnUiThread(new Runnable() {
                @Override
                public void run() {
                    textView.setText(sb.toString());
                }
            });
        }

    }

    @Override
    public void onDestroy() {
        stopService(new Intent(this, SampleSpellCheckerService.class));
        super.onDestroy();
    }
}

では、からセッションを取得する正しい方法は何SampleSpellCheckerServiceですか?

完全を期すために、ここに私のスペル チェッカー サービス クラスを示します。

public class SampleSpellCheckerService extends SpellCheckerService {

    public static final String LOG_TAG = SampleSpellCheckerService.class.getSimpleName();

    public SampleSpellCheckerService() {
        Log.d(LOG_TAG, "SampleSpellCheckerService");
    }

    @Override
    public void onCreate() {
        super.onCreate();

        Log.d(LOG_TAG, "SampleSpellCheckerService.onCreate");
    }

    @Override
    public Session createSession() {

        Log.d(LOG_TAG, "createSession");

        return new AndroidSpellCheckerSession();
    }

    private static class AndroidSpellCheckerSession extends SpellCheckerService.Session {

        @Override
        public void onCreate() {

            Log.d(LOG_TAG, "AndroidSpellCheckerSession.onCreate");

        }



        @Override
        public SentenceSuggestionsInfo[] onGetSentenceSuggestionsMultiple(TextInfo[] textInfos, int suggestionsLimit) {

            Log.d(LOG_TAG, "onGetSentenceSuggestionsMultiple");

            SentenceSuggestionsInfo[] suggestionsInfos = null;
            //suggestionsInfo = new SuggestionsInfo();
            //... // look up suggestions for TextInfo
            return suggestionsInfos;
        }

        @Override
        public SuggestionsInfo onGetSuggestions(TextInfo textInfo, int suggestionsLimit) {

            Log.d(LOG_TAG, "onGetSuggestions");

            SuggestionsInfo suggestionsInfo = null;
            //suggestionsInfo = new SuggestionsInfo();
            //... // look up suggestions for TextInfo
            return suggestionsInfo;
        }

        @Override
        public void onCancel() {
            Log.d(LOG_TAG, "onCancel");
        }


    }
}

これが私のマニフェストです:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example">

    <permission android:name="android.permission.BIND_TEXT_SERVICE" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <service
            android:name="com.example.SampleSpellCheckerService"
            android:label="@string/app_name"
            android:enabled="true"
            android:permission="android.permission.BIND_TEXT_SERVICE">
            <intent-filter>
                <action android:name="android.service.textservice.SpellCheckerService" />
            </intent-filter>

            <meta-data
                android:name="android.view.textservice.scs"
                android:resource="@xml/spellchecker" />
        </service>

        <activity android:name="com.example.SpellCheckerSettingsActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

そして、ここに私のスペルチェッカー.xmlがあります:

<?xml version="1.0" encoding="utf-8"?>
<spell-checker
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:label="@string/spellchecker_name"
    android:settingsActivity="com.example.SpellCheckerSettingsActivity">
    <subtype
        android:label="@string/subtype_generic"
        android:subtypeLocale="en" />
    />
    <subtype
        android:label="@string/subtype_generic"
        android:subtypeLocale="en_GB" />
    />
</spell-checker>

注意 - Samsung デバイスでテストしています。

4

1 に答える 1

1

ドキュメントといくつかのサンプルコードからわかる限り、Android Spell Checking API の誤解があり、エラーが発生しているようです。

APIの目標は、ユーザーが最初にシステム設定から選択する必要があるスペルチェッカーを定義することであるため、サービスを直接呼び出すことはできません。基本的に、設定アクティビティ (サービス関連の設定に表示される) とサービスのテスト アクティビティを混同しました。

いくつかの優れたチュートリアルがandroid dev blogに書かれており、ここでは、テスト クライアントのサンプル コードと基本的なサンプル サービスが、github のミラー化された android サンプルの間にあります。

ここまでで取得したのはサンプル サービスです (ただし、リンクされたサンプルには、メソッドの実装方法を確認するためのコードがいくつかあります)。ロケール定義に必要な spellchecker.xml と、設定に表示されるスペルチェッカー名が既にあります。設定アクティビティ (spellchecker.xml で定義されていますが、設定が必要ない限り必要ありません) と、SpellCheckerSessionListener(設定アクティビティと名付けましたが) を実装するアクティビティがあります。

あなたがまだしなければならないことは、あなたのsettings-> Language & keyboard-> activateに行き、Spell checkerあなたのスペルチェッカーを選択することです.

そのスペルチェッカーからセッションを取得するには、API を呼び出すことができます。

        final TextServicesManager tsm = (TextServicesManager) getSystemService(
            Context.TEXT_SERVICES_MANAGER_SERVICE);
    mScs = tsm.newSpellCheckerSession(null, null, this, true);

サンプルに見られるように。

編集: サービスの設定が不要な場合は、xml から xml 属性を削除できます。

 android:settingsActivity="com.example.SpellCheckerSettingsActivity"
于 2016-12-16T04:01:01.340 に答える