0

service電話の起動が終了したときに (CheckTime)を開始したいと考えています。これは機能しているように見えますが、アプリがすぐにクラッシュします。次のエラー " java.lang.RuntimeException: Unable to start receiver com.example.alarmtest.MyReceiver: java.lang.UnsupportedOperationException: Not yet implemented" が表示されます。私はこの問題を解決しようとして失敗しました。何かを忘れたかどうかはわかりmanifestません(私はAndroid向けの開発にかなり慣れていません)。これは MyReceiver の私のコードです。(このための log.d が表示されます)

public class MyReceiver extends BroadcastReceiver {
public MyReceiver() {   
}

@Override
public void onReceive(Context context, Intent intent) {
        Intent startServiceIntent = new Intent(context, CheckTime.class);
        context.startService(startServiceIntent);
        Log.d("evan alarm", "Started on Launch, android autostart");
   throw new UnsupportedOperationException("Not yet implemented");
        }
}

および CheckTime のコード (これに対する log.d は表示されません)

public class CheckTime {
      public void loglab(){
      Log.d("evan alarm", "We are now in CheckTime");
      }
}

そして最後にマニフェスト。

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

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

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

<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <service 
        android:name="com.example.alarmtest.MyService" >
        <intent-filter 
            android:label="com.example.alarmtest.MyService">
        </intent-filter>
    </service>
    <service android:name="com.example.alarmtest.CheckTime" />

    <activity
        android:name="com.example.alarmtest.AlarmActivity"
        android:label="@string/title_activity_alarm" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.example.alarmtest.ChangeTime"
        android:label="@string/title_activity_change_time" >
        <meta-data
            android:name="android.support.PARENT_ACTIVITY"
            android:value="com.example.AlarmTest.AlarmActivity" />
    </activity>

    <receiver
        android:name="com.example.alarmtest.MyReceiver">
        <intent-filter>  
            <action android:name="android.intent.action.BOOT_COMPLETED" />  
        </intent-filter> 
    </receiver>
</application>

</manifest>
4

2 に答える 2

14
   throw new UnsupportedOperationException("Not yet implemented");

それが受信機の最後の行です。あなたはそれを自分で投げています。

于 2013-01-24T04:22:03.527 に答える
3

この行を削除

throw new UnsupportedOperationException("Not yet implemented");
于 2015-10-13T11:15:14.273 に答える