Неустранимое исключение: java.lang.RuntimeException: Невозможно создать экземпляр службы

Я новичок в Android. Я создаю новый сервис и запускаю его в Android Mobile API Level-23. Когда я нажимаю кнопку, чтобы начать обслуживание, он показывает мне ОШИБКУ. сейчас я создаю новый проект, но проблема там та же.

**FATAL EXCEPTION: java.lang.RuntimeException: Unable to instantiate service com.example.uzair.servicesapp.myIntentService: java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.res.Resources android.content.Context.getResources()' on a null object reference** 

MainActivity.java

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Gravity;
import android.view.View;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {

    private static int i =0;
    private Intent  ii;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ii = new Intent(this,myIntentService.class);
       Toast.makeText(this, "this is custom toast", Toast.LENGTH_SHORT).show();
 }

    public void clickme2(View view)
    {
        startService(ii);
        Toast.makeText(this, " Service start toast", Toast.LENGTH_SHORT).show();
    }

    public void clickme(View view) {

 stopService(ii);
Toast.makeText(this, "Service stop toast", Toast.LENGTH_SHORT).show(); 
        i++;
    }
}

MyIntentService.java

import android.app.IntentService;
import android.content.Intent;
import android.widget.Toast;
public class myIntentService extends IntentService {

    public myIntentService()
    {
        super("myIntentService");
        Toast.makeText(this, "IntentService Constuctor toast", Toast.LENGTH_SHORT);
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        Toast.makeText(this, "OnhandleIntent toast", Toast.LENGTH_SHORT);
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        Toast.makeText(this, "Destroy toast", Toast.LENGTH_SHORT);
    }

    @Override
    public void onCreate() {
        super.onCreate();
    }
}

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.uzair.servicesapp">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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


    </application>

</manifest>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.uzair.servicesapp.MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        android:id="@+id/textView" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="clickme"
        android:text="@string/click_me"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="118dp" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Button"
        android:id="@+id/button"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true"
        android:onClick="clickme2" />
</RelativeLayout>

2 ответа

Удалить эту строку:

Toast.makeText(this, "IntentService Constuctor toast", Toast.LENGTH_SHORT);

Во-первых, вы не звоните show() на любом из ваших Toast объекты, поэтому ни один не будет отображаться. использование Log.d() вместо этого регистрировать сообщения в LogCat.

Во-вторых, не используйте thisили вызовите унаследованные методы на Serviceот конструктора.

Если это не поможет, отредактируйте вопрос и опубликуйте всю трассировку стека Java, а не только сообщение об ошибке.

Вы создаете и обновляете службу, поэтому вам нужно создать намеренный фильтр для этой службы в файле Manisfest. В вашем файле манифеста отредактируйте:

    <service android:name=".myIntentService">
       <intent-filter>
            <action android:name="com.example.uzair.servicesapp.myIntentService" />
        </intent-filter>
    </service>
Другие вопросы по тегам