Android服务在单独的过程中

时间:2014-11-12 21:07:15

标签: android android-service

我正在使用单个活动运行我的应用程序,并在startService(new Intent(this, TCPClient.class));中调用onStart。我也在onCreate()服务中启动线程,建立与我的服务器的TCP连接。服务在单独的进程中运行。它一直运行良好,直到我重新启动我的应用程序(我不会在应用程序关闭时停止服务)。当我这样做时,我将从同一IP获得1个以上的连接。所以,我有2个客户端从同一设备和相同的IP连接。问题是:如何防止创建更多服务?

清单:

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

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/MainActivityTheme" >
        <!-- android:theme="@style/AppTheme" > -->
        <service android:name=".TCPClient"
            android:process=":service">
        </service>
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:theme="@style/MainActivityTheme" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

的OnStart:

@Override
    protected void onStart() {
        super.onStart();

        Log.v(TAG, "onStart");
        startService(new Intent(this, TCPClient.class));
    }

onStartCommand:

public int onStartCommand(Intent intent, int flags, int startId) {
        if (intent != null) {
            Bundle bundle = intent.getExtras();
            if (bundle != null) {
                if (bundle.containsKey("stop"))
                {
                    stopClient();
                }
            }
        }
        Log.v(TAG, "onStartCommand...");
        return TCPClient.START_STICKY;
    }

stopClient:

private void stopClient() {

        // send mesage that we are closing the connection
        sendCmd(CLOSED_CONNECTION);

        mRun = false;

        SharedPreferences prefSettings = getSharedPreferences("settings", MODE_PRIVATE);
        Editor settingsEd = prefSettings.edit();
        settingsEd.putInt("connected", 0);
        settingsEd.apply();

        if (mBufferOut != null) {
            mBufferOut.flush();
            mBufferOut.close();
        }

        mBufferIn = null;
        mBufferOut = null;
        mServerMessage = null;
    }

4 个答案:

答案 0 :(得分:5)

  

当我这样做时,会创建一个带服务的新流程。

打开流程视图(例如DDMS透视图 - &gt;设备)并检查启动的服务数量。我打赌只会有一个。

  

因此,我有2个客户端从同一设备和相同的IP连接。问题是:如何防止创建更多服务?

我怀疑您需要检查服务中的连接/断开逻辑,因为Android只允许启动一个服务实例。服务启动时onCreate()被调用。以下所有startService()命令都会进入服务的onStartCommand()方法。只需在服务onCreate()onStartCommand()中加入一个断点,看看会发生什么。

答案 1 :(得分:3)

好吧,我明白了:当我从最近的应用程序中刷我的应用程序时,两个进程(主服务器和服务器)都关闭,然后服务器重新启动。我通过在startForeground(R.string.app_name, new Notification());我的服务onCreate)中添加{{1}}来解决这个问题。谢谢大家:))

答案 2 :(得分:0)

在Android中启动服务时,它不是一个单独的进程。 来自Android文档:

  

关于Service类的大多数混淆实际上都围绕着它不是:

     
      
  • 服务不是一个单独的过程。 Service对象本身就是   并不意味着它在自己的过程中运行;除非另有   指定,它在与它所属的应用程序相同的进程中运行   的。
  •   
  • 服务不是线程。它本身不是一种工作方式   关闭主线程(以避免应用程序无响应错误)。
  •   

我假设您正在尝试创建仅运行该服务的NON UI应用程序。请参阅官方文档,该文档非常清楚地了解服务生命周期和相关概念。它有一些值得一看的示例实现..

http://developer.android.com/reference/android/app/Service.html

答案 3 :(得分:0)

android:process 应该与注意

一起使用

(在下面的链接中引用)

Android的一个鲜为人知且似乎未记录的行为是,应用程序的每个进程都有自己的Application实例。

因此,如果您有在不同进程中运行的服务,则调用startService()将为您的应用初始化Appplication类。

更多信息-Starting Service in Android calls Applications onCreate