主要活动销毁时重新创建Android服务

时间:2014-07-05 07:01:13

标签: android service android-service android-intentservice

我的android服务有问题, 当我关闭应用程序时,主活动关闭并重新创建服务 - oncreated方法 调用自动和onstart也称为自动 - 并且所有状态都消失了。

这是我的活动代码

   public class ServicesDemo extends Activity implements OnClickListener
{
    private static final String TAG = "ServicesDemo";
    Button buttonStart, buttonStop;

    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        if (savedInstanceState != null)
        {
            Log.d(TAG, "ServicesDemo:onCreate WITH savedInstanceState)");
        }
        Log.d(TAG, "ServicesDemo:onCreate");
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        buttonStart = (Button) findViewById(R.id.buttonStart);
        buttonStop = (Button) findViewById(R.id.buttonStop);

        buttonStart.setOnClickListener(this);
        buttonStop.setOnClickListener(this);
    }

    public void onClick(View src)
    {
        switch (src.getId())
        {
        case R.id.buttonStart: 
            Log.d(TAG, "onClick: starting srvice");
            startService(new Intent(this, MyService.class));
            break;
        case R.id.buttonStop:
            // Log.d(TAG, "onClick: stopping srvice");

             stopService(new Intent(this, MyService.class));
            break;
        }
    }
}

这是服务代码:

public class MyService extends Service
{
    private static final String TAG = "ServicesDemo";
    private static MyThread t = new MyThread();
    static int yy = 90;

    @Override
    public IBinder onBind(Intent intent)
    {
        return null;
    }

    @Override
    public void onCreate()
    {
        Toast.makeText(this, "My Service Created", Toast.LENGTH_LONG).show();
        Log.d(TAG, "onCreate");
        // MockGPSLocationModel.getInstance().Counter++;

        // Log.d(TAG, "MockGPSLocationModel.getInstance().Counter :: " +
        // MockGPSLocationModel.getInstance().Counter);
        // MockGPSLocationModel.getInstance().Counter++;
    }

    static public class MyThread extends Thread
    {
        MediaPlayer player;
        public Context ctx;

        @Override
        public void run()
        {
            try
            {
                for (int i = 0; i < 100; i++)
                {
                    Log.i(TAG, "lOOP - " + i);
                    Thread.sleep(2000);
                }
                player = MediaPlayer.create(ctx, R.raw.braincandy);
                player.setLooping(false); // Set looping
                player.start();
            }
            catch (Exception e)
            {
                Log.e(TAG, e.toString());

            }
            finally
            {

            }
        }
    }

    @Override
    public void onDestroy()
    {
        Toast.makeText(this, "My Service Stopped", Toast.LENGTH_LONG).show();
        Log.d(TAG, "onDestroy");
        // player.stop();
    }

    @Override
    public void onStart(Intent intent, int startid)
    {
        Toast.makeText(this, "My Service Started", Toast.LENGTH_LONG).show();
        Log.d(TAG, "onStart");

        t.ctx = this;
        t.start();

        // player.start();
    }
}

的AndroidManifest.xml

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

    <application
        android:icon="@drawable/icon"
        android:label="@string/app_name" >
        <activity
            android:name=".ServicesDemo"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

        <service
            android:name=".MyService"
            android:enabled="true" />
    </application>

    <uses-sdk android:minSdkVersion="3" />

</manifest>

请帮忙。 我坚持了3天。

THX, 阿龙

3 个答案:

答案 0 :(得分:1)

您的代码的第一个问题是您允许多次在MyServcie类中启动线程。每次用户按下&#34;开始&#34;按钮,调用线程start方法,根据Java API specification

,这是非法的
  

不止一次启动线程永远不合法。特别是,一旦完成执行,线程可能无法重新启动。

您应该防止在Service类中重复启动线程,例如使用一个标志来告知线程是否已经启动。

另请注意,自API级别5以来,不推荐使用Service#onStart方法。相反,如果可能,应使用Service#onStartCommand。 正如Sanket所指出的那样,如果您只想执行一次START_NOT_STICKY方法的代码,则应该返回MyThread#run。您也可以在finally块中明确停止服务。

答案 1 :(得分:0)

看看这是否有帮助 - 使用共享首选项为状态保存一些字符串,并在活动重新打开时检索。

答案 2 :(得分:0)

在服务类

中使用此方法
@Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        // We want this service to continue running until it is explicitly
        // stopped, so return sticky.

        // do your logic here not in onStart().

        return START_NOT_STICKY;
    }

START_NOT_STICKY和START_STICKY

这里有很好的答案START_NOT_STICKY和START_STICKY

https://stackoverflow.com/a/9441795/942224

如果您希望在app关闭时停止服务,请在stopService

中使用onDestroy