不幸的是,app在线程中使用服务时停止了

时间:2015-08-21 04:05:07

标签: android android-intent android-service android-service-binding

我是Android开发新手,并尝试在服务上制作演示应用程序。 但是,随着教程描述服务在主UI线程上运行,我创建了线程并将我的服务放在该线程中以在后台执行。并且它在背景中也能正常工作几秒钟,然后通过说&#34来关闭应用程序;不幸的是应用已经停止"。

这是我的代码,

服务类

scanf("%d", &intVal);  
charval= getchar();
printf("Integar: %d\nCharacter: %c\n", intVal, charVal);

清单文件

public class UpdateLocation extends Service {

    private class UpdateLocationThread implements Runnable{
        int service_id;
        UpdateLocationThread(int service_id){
            this.service_id = service_id;
        }

        @Override
        public void run() {
            int i= 0;
            synchronized (this){
                while (i <= 10){
                    try {
                        wait(15000);
                        i++;
                        Toast.makeText(UpdateLocation.this, "Service ends...", Toast.LENGTH_SHORT).show();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
            stopSelf(service_id);
        }
    }

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

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

    @Override
    public void onDestroy() {
        Toast.makeText(UpdateLocation.this, "Service ends...", Toast.LENGTH_SHORT).show();
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Toast.makeText(UpdateLocation.this, "Service started...", Toast.LENGTH_SHORT).show();
        Thread thread = new Thread(new UpdateLocationThread(startId));
        thread.start();

        return  START_STICKY;
    }

}

通过执行来调用服务

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

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

    <application
        android:name=".Model.commonFuncs"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" > <!-- android:theme="@style/Theme.AppCompat.NoActionBar" -->

        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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


        <activity
            android:name=".MyAppBaseActivity"
            android:label="@string/title_activity_my_app_base" >
        </activity>

        <service android:name=".MServices.UpdateLocation"
            android:exported="false"></service>
    </application>

</manifest>

停止申请的原因是什么?如何解决?

2 个答案:

答案 0 :(得分:4)

如果有必要,可以在UI线程上显示Toast,如

runOnUiThread(new Runnable() {

                        @Override
                        public void run() {
                           //yourtoast;
                        }
                    });

答案 1 :(得分:1)

你在线程中显示Toast,只允许在UI线程中,删除它或在UI主线程中调用它。