1

我在我的词典应用程序中编写了我自己的词典定义词。但是,每当我在我的模拟器中启动我的字典应用程序时,默认的 android 字典工作都不会工作我的应用程序字典。我更改了所有提供者的权限,清单文件中的所有内容。但是字典不起作用。

显现:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.searchbook"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="16"
        android:targetSdkVersion="15" />

    <application
        android:icon="@drawable/ic_dictionary"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

         <!-- The default activity of the app; displays search results. -->
        <activity android:name=".SearchBook"
                  android:launchMode="singleTop">

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

            <!-- Receives the search request. -->
            <intent-filter>
                <action android:name="android.intent.action.SEARCH" />
                <!-- No category needed, because the Intent will specify this class component-->
            </intent-filter>

            <!-- Points to searchable meta data. -->
            <meta-data android:name="android.app.searchable"
                       android:resource="@xml/searchable" />

        </activity>

        <!-- Displays the definition of a word. -->
        <activity android:name=".WordActivity" />

        <!-- Provides search suggestions for words and their definitions. -->
        <provider android:name=".DictionaryProvider"
                  android:authorities="com.example.searchbook.DictionaryProvider" />

        <!-- Points to searchable activity so the whole app can invoke search. -->
        <meta-data android:name="android.app.default_searchable"
                   android:value=".SearchBook" />


    </application>

</manifest>
4

1 回答 1

2

“com.example.searchbook”似乎是示例应用程序的 android 约定。可能有一个与此名称完全相同的现有应用程序。正如您指出的那样,它会启动默认值。尝试将其重构为“com.stackoverflow.karthi”之类的其他内容。

于 2012-09-09T15:05:46.440 回答