7

我正在尝试从 Activity 中的 onCreate 发送 Intent 以启动 IntentService。然而,永远不会收到 IntentService 的 onHandleIntent。我尝试使用 Intent-filters 更改 Manifest,但似乎没有任何效果。没有抛出异常,但根本没有调用 IntentService。

这是 onCreate

@Override
public void onCreate(Bundle savedInstanceState)
{

    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    db = new TwitterDB(this);
    String[] columns = new String[1];
    columns[0] = TwitterDB.TEXT;
    tAdapter = new SimpleCursorAdapter(this, 0, null, columns, null, 0); 
    tweets = (ListView)findViewById(R.id.listtwitter);
    tweets.setAdapter(tAdapter);

    Intent intent = new Intent(this, SyncService.class);
    intent.putExtra("action", SyncService.TWITTER_SYNC);
    this.startService(intent);

}

这是 IntentService 类的创建者和 onHandleIntent,我知道它没有被调用,因为 logcat 从不显示“检索的意图”。构造函数也没有被调用(那里有一个日志调用,但我删除了它。

public SyncService(){
    super("SyncService");
    twitterURI = Uri.parse(TWITTER_URI);
    Log.i("SyncService", "Constructed");
}

@Override
public void onHandleIntent(Intent i){
    int action = i.getIntExtra("action", -1);
    Log.i("SyncService", "Retrieved intent");
    switch (action){
        case TWITTER_SYNC:
            try{
                url = new URL(twitterString);
                conn = (HttpURLConnection)url.openConnection();
                syncTwitterDB();
                conn.disconnect();
            }catch(MalformedURLException e){
                Log.w("SyncService", "Twitter URL is no longer valid.");
                e.printStackTrace();
            }catch(IOException e){
                Log.w("SyncService", "Twitter connection could not be established.");
                e.printStackTrace();
            }
            break;
        default:;
            // invalid request
    }
}

这是 Manifest.xml

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

<uses-sdk android:minSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET"/>
<application android:icon="@drawable/ic_launcher"               
         android:label="@string/app_name" >
    <activity
        android:name=".TwitterTwoActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

2 回答 2

9

您需要在清单中定义服务的路径,仅输入名称是不够的。

改变

<service android:name="SyncService"/>

<service android:name=".SyncService"/>

如果 SyncService 在您的包的根目录中,.SyncService如果需要,请在之前添加相应的文件夹。

于 2012-07-13T18:51:50.917 回答
9

将您的服务声明移到 XML 文件中的 TwitterTwoActivity 范围之外,就像我在这里所做的那样:

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

<uses-sdk android:minSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET"/>
<application android:icon="@drawable/ic_launcher"               
         android:label="@string/app_name" >
    <activity
        android:name=".TwitterTwoActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

</application>
</manifest>
于 2012-07-13T19:03:58.357 回答