0

我正在尝试从 y 应用程序的主要活动启动 IntentService,但它不会启动。我在清单文件中有服务。这是代码:

主要活动

public class Home extends Activity {
    private LinearLayout kontejner;
    IntentFilter intentFilter;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_home);
        kontejner = (LinearLayout) findViewById(R.id.kontejner);
        intentFilter = new IntentFilter();

        startService(new Intent(getBaseContext(), HomeService.class));
    }
}

服务:

public class HomeService extends IntentService {

    public HomeService() {
        super("HomeService");
        // TODO Auto-generated constructor stub
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        Toast.makeText(getBaseContext(), "TEST", Toast.LENGTH_LONG).show();
        }
}

显现:

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

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

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".Home"
            android:label="@string/title_activity_home" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <service android:name=".HomeService" />
    </application>
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

我怎样才能让它工作?

4

2 回答 2

1

onHandleIntent从后台线程调用。您不能修改 UI,或者在这种情况下,从 UI 线程外部制作 Toast。因此,我不希望您的服务会发生任何事情。

只需尝试写一些东西,Log.d()看看您的服务是否被调用。

于 2012-09-17T18:21:00.340 回答
1

似乎android缓存了应用程序的错误版本-我强行关闭它并重新启动它,并且它起作用了...

于 2012-09-17T18:59:33.670 回答