私はこの問題を抱えた最初の人ではありませんが、私は非常に多くの解決策を試しました、私は見つけました、そして誰も働きません...多分あなたはエラーを見つけることができました
エラー(他の設定に応じて、.classなしおよび/.Clientありでも発生しました)
12-02 16:40:15.359:W / ActivityManager(74):サービスインテントを開始できません{act = com.android.fh.EnOceanApp.Client.class}:見つかりません
マニフェストでは、これはアプリケーション、アクティビティ外に含まれています(アクティビティおよび「.Client」でも試してみました)
onCreate()のコード
startService(new Intent(this, Client.class));
また
startService(new Intent(this.getApplicationContext(), Client.class));
また
Intent intent=new Intent("com.android.fh.EnOceanApp.Client.class");
this.startService(intent);
また
Intent intent=new Intent("com.android.fh.EnOceanApp.Client");
this.startService(intent);
そして今、私はもうアイデアを持っていません.... com.android.fh.EnOceanAppはパッケージであり、Client.javaはこのパッケージのサービスクラスです
そして私が忘れたマニフェスト:
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".EnOceanAppActivity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".ListView"
android:label="List View">
</activity>
<activity android:name=".GraphView"
android:label="Graph View">
</activity>
<service
android:name=".Client"></service> //with and without ., of course without this comment
</application>