Android:无法使用null启动服务:java.lang.NullPointerException

时间:2016-04-24 23:40:10

标签: java android service nullpointerexception foreground-service

在开始之前,我想说清楚我已经阅读了类似主题的先前答案(主要是this one),即使在评论中给出的答案也不适用于我(添加意图!在intent.getAction()没有工作之前= null。

我试图为玛雅星座做一个前台服务。该服务的目的是从SQLite数据库中读取占星符号和预测,并且每当它收到带有以下内容的文本消息时:" MAYA dd / MM / yyyy" (DOB),服务将获取信息并自动发送文本消息。 我已经得到了它作为后台服务没有错误,但我想给它一个通知,以便用户可以看到该服务是否正在运行。

我已经按照其他教程(tutorial 1tutorial 2)来制作前台服务,并且工作正常,没有错误。

我现在的问题是每当我启动服务时,停止服务并最终清除ram(杀死应用程序)我在服务的第57行一直得到Nullpointer Exception(无论我的代码是什么让它始终排在第57行。 在我的手机上它给了我一个消息"不幸的是HoroscopoMaya已经停止工作。"两次!

的Manifest.xml

<?xml version="1.0" encoding="utf-8"?>

<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"
        android:launchMode="singleTask">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <service android:name=".ServicioAstralMaya"
             android:exported="false" />
</application>
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.READ_SMS" />
<uses-permission android:name="android.permission.RECEIVE_SMS" />

MainActivity.java:

public void startService( View view )
{
    if( bRunning == false )
    {
        Intent intent = new Intent( MainActivity.this, ServicioAstralMaya.class );
        intent.setAction( Constants.ACTION.START_FOREGROUND_ACTION );
        startService( intent );
        txtVStatServ.setText( "INVOCADOS " );
        bRunning = true;
    }
}//END startService( View )

public void stopService( View view )
{
    if( bRunning == true )
    {
        Intent intent = new Intent( MainActivity.this, ServicioAstralMaya.class );
        intent.setAction( Constants.ACTION.STOP_FOREGROUND_ACTION );
        startService( intent );
        txtVStatServ.setText( "DESCANSANDO " );
        bRunning = false;
    }
}//END stopService( View )

ServicioAstralMaya.java(服务):

@Override
public int onStartCommand( Intent intent, int flags, int startID )
{
    if( intent != null && intent.getAction().equals( Constants.ACTION.START_FOREGROUND_ACTION
    ) )
    {
        Log.i( TAG, "Servicio iniciado!" );
        isRunning = true;
        startForeground( Constants.NOTIFICATION_ID.SERVICE_ID, getCompatNotification() );
    }else if( intent != null && intent.getAction().equals( Constants.ACTION.STOP_FOREGROUND_ACTION ) )
    {

        Log.i( TAG, "Servicio detenido!" );
        isRunning = false;
        stopForeground( true );
        stopSelf();
    }
    return START_STICKY;
}

private Notification getCompatNotification()
{
    NotificationCompat.Builder builder = new NotificationCompat.Builder( this );
    builder.setSmallIcon( R.drawable.homonculus_32 )
        .setContentTitle( "Horoscopos Maya" )
        .setTicker( "Astros Conectados" )
        .setWhen( System.currentTimeMillis() );
    Intent startIntent = new Intent( this, MainActivity.class );
    PendingIntent contentIntent = PendingIntent.getActivity( this, 0, startIntent,
        0 );
    builder.setContentIntent( contentIntent );
    Notification notification = builder.build();

    return notification;
}//END Notification getCompatNotification()

@Override
public void onDestroy()
{
    super.onDestroy();
    isRunning = false;
}

Constants.java

public interface ACTION
{
    public static final String START_FOREGROUND_ACTION = "edu.ito.jmhg" +
        ".horoscopomaya.action.START_FOREGROUND";
    public static final String STOP_FOREGROUND_ACTION = "edu.ito.jmhg" +
        ".horoscopomaya.action.STOP_FOREGROUND";
}

public interface NOTIFICATION_ID
{
    public static final int SERVICE_ID = 1;
}

第57行是:Log.i( TAG, "Servicio iniciado!" );

isRunning和bRunning是检查服务是否正在运行,以便在MainActivity中显示状态:

bRunning = isServiceRunning( ServicioAstralMaya.class );

private boolean isServiceRunning( Class<?> serviceClass )
{
    ActivityManager manager = (ActivityManager)getSystemService( Context.ACTIVITY_SERVICE );
    for( ActivityManager.RunningServiceInfo service : manager.getRunningServices( Integer
        .MAX_VALUE ) )
    {
        if( serviceClass.getName().equals( service.service.getClassName() ) ) {
            return true;
        }
    }
    return false;
}//END boolean isServiceRunning( Class<?> )

并在服务中:public static boolean isRunning;

我甚至尝试过调用stopService并在stopForeground(true);方法中执行stopSelf();onDestroy()但仍然无济于事。错误是我的服务类的第57行。

logcat的:

FATAL EXCEPTION: main
Process: edu.ito.jmhg.horoscopomaya, PID: 21642
java.lang.RuntimeException: Unable to start service  edu.ito.jmhg.horoscopomaya.ServicioAstralMaya@426d11c8 with null: java.lang.NullPointerException
...
Caused by: java.lang.NullPointerException at edu.ito.jmhg.horoscopomaya.ServicioAstralMaya.onStartCommand(ServicioAstralMaya.java:57)

我正在运行Android KitKat 4.4.4(API 19),Android Studio 2使用扎根的Samsung Grand Prime。

修改

我不知道这是否有些相关,但我确实注意到了有关Android Studio的一些信息。 无论我做了什么改变,当我运行应用程序时,我都会收到通知&#34;没有更改部署&#34;

事件记录:

19:32:47 Executing tasks: [:app:assembleDebug]
19:33:50 Gradle build finished in 1m 3s 59ms
19:33:51 No changes to deploy

我已更改了我的服务代码,行错误仍为57,现在) )

之后立即if( intent.getAction().equals( Constants.ACTION.START_FOREGROUND_ACTION

ServicioAstralMaya.java(服务):

@Override
public int onStartCommand( Intent intent, int flags, int startID )
{
    if( intent != null && intent.getAction() != null )
    {
        if( intent.getAction().equals( Constants.ACTION.START_FOREGROUND_ACTION
        ) )
        {
            Log.i( TAG, "Servicio iniciado!" );
            isRunning = true;
            startForeground( Constants.NOTIFICATION_ID.SERVICE_ID, getCompatNotification() );
        }else if( intent.getAction().equals( Constants.ACTION.STOP_FOREGROUND_ACTION ) )
        {
            Log.i( TAG, "Servicio detenido!" );
            isRunning = false;
            stopForeground( true );
            stopSelf();
        }
    }
    return START_STICKY;
}

此外,由于我已更改为Android 2,我的gradle已更新,我遇到了这个奇怪的错误,我必须将build.gradle中的buildToolsVersion从buildToolsVersion "24.0 rc2"更改为buildToolsVersion "23.0.2"

的build.gradle:

apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
    applicationId "edu.ito.jmhg.horoscopomaya"
    minSdkVersion 19
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
}

2 个答案:

答案 0 :(得分:1)

问题是Android Studio本身!!

就像我在编辑中说的那样,Android Studio给了我&#34;没有更改部署&#34;,这非常奇怪,所以我搜索了它并找到this solution

  

转到&#34;文件 - &gt;设置 - &gt;构建,执行,部署 - &gt;   即时运行&#34;然后禁用它。随着这个Android Studio的构建   每次刮擦,但比没有正确构建更好。

我保持@Francesc提到的if条件只是为了安全起见而且我的应用程序不再给我NullPointerException了。

答案 1 :(得分:0)

当即时运行处于活动状态时,

jmhg92解决方案确实解决了我的服务,模型和碎片的NullPointerExceptions

  

转到&#34;文件 - &gt;设置 - &gt;构建,执行,部署 - &gt;即时运行&#34;

但是,如果你想保持即时运行,你只需取消选中&#34;重新启动代码更改活动&#34;

  

偏好设置&gt;构建,执行,部署&gt;即时运行&gt;取消选中&#34;重新启动代码更改活动&#34;

到目前为止,我已经能够使用Instant Run并且没有收到任何例外。

希望此解决方案对某人有用。