Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/184.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 谷歌活动识别意向服务在某些设备上不起作用_Java_Android_Android Studio_Kotlin - Fatal编程技术网

Java 谷歌活动识别意向服务在某些设备上不起作用

Java 谷歌活动识别意向服务在某些设备上不起作用,java,android,android-studio,kotlin,Java,Android,Android Studio,Kotlin,我对谷歌活动识别API有一个奇怪的问题,我的服务运行良好,在华为和三星制造的设备上检测到的活动相当好,但当我在2台Motos和诺基亚上测试时,它不起作用。华为和诺基亚在安卓9、第一款Moto 8.1、第二款Moto 10和三星安卓6/7上运行 这是我的服务: class DetectedActivitiesIntentService : IntentService("DetectedActivitiesIntentService"), LocationListener, ConnectionC

我对谷歌活动识别API有一个奇怪的问题,我的服务运行良好,在华为和三星制造的设备上检测到的活动相当好,但当我在2台Motos和诺基亚上测试时,它不起作用。华为和诺基亚在安卓9、第一款Moto 8.1、第二款Moto 10和三星安卓6/7上运行

这是我的服务:

class DetectedActivitiesIntentService : IntentService("DetectedActivitiesIntentService"), 
LocationListener, ConnectionCallbacks, OnConnectionFailedListener {

    private var mGoogleApiClient: GoogleApiClient? = null
    private var monitoringIsNotStarted: Boolean = true
    private var tempDistance = 0.0
    private var maxSpeed = 0.0

    override fun onCreate() {


        mGoogleApiClient = GoogleApiClient.Builder(this)
                .addConnectionCallbacks(this)
                .addOnConnectionFailedListener(this)
                .addApi(LocationServices.API)
                .build()
        mGoogleApiClient!!.connect()


        Toast.makeText(this, "Pracenje aktivnosti zapoceto", Toast.LENGTH_SHORT).show()

        super.onCreate()
    }

    override fun onHandleIntent(intent: Intent?) {

        if (monitoringIsNotStarted) {
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                startForegroundService(Intent(this, DrivingMonitor::class.java))
                println("FOREGROUND MONITOR ACTIVITY")
            }else {
                startService(Intent(this, DrivingMonitor::class.java))
                println("BACKGROUND MONITOR ACTIVITY")
            }
            monitoringIsNotStarted = false
        }

        val detectedActivitiesIntent = Intent("activityChange")
        detectedActivitiesIntent.putExtra("detectedActivities", ActivityRecognitionResult.extractResult(intent).probableActivities as ArrayList)
        LocalBroadcastManager.getInstance(this).sendBroadcast(detectedActivitiesIntent)

        val timeSt = currentTimeMillis()
        var actionType = ActivityRecognitionResult.extractResult(intent).mostProbableActivity.type

        if (actionType == ON_FOOT)
            actionType = WALKING
        val lastActionType = PreferenceManager.getDefaultSharedPreferences(this).getInt(KEY_LAST_DETECTED_TYPE, 3)
        val lastTimestamp = PreferenceManager.getDefaultSharedPreferences(this).getLong(LAST_TIMESTAMP, 0)

        val preferences = getSharedPreferences(USER_PREFERENCES, Context.MODE_PRIVATE)
        val editor = preferences.edit()

        if (actionType == lastActionType && trackedActivities.contains(actionType) && locations.size > 100) {
            if (actionType != STILL) tempDistance = SphericalUtil.computeLength(locations.toMutableList())
            var oldTempDistance = preferences.getFloat("tempDistance", 0.0f)
            editor.putFloat("tempDistance", (tempDistance + oldTempDistance).toFloat())
            editor.apply()
            locations.clear()
        }

        if (actionType != lastActionType && trackedActivities.contains(actionType)) {

            val preferencess = getSharedPreferences(USER_PREFERENCES, Context.MODE_PRIVATE)
            val editorr = preferencess.edit()
            val temp = preferencess.getFloat("tempDistance", 0.0f)

            if (actionType == DetectedActivity.IN_VEHICLE)
                driving(true)

            var distance = SphericalUtil.computeLength(locations.toMutableList())
            distance += temp
            editorr.putFloat("tempDistance", 0.0f)
            editorr.apply()

            mGoogleApiClient?.disconnect()
            locations.clear()
            PreferenceManager.getDefaultSharedPreferences(this)
                    .edit()
                    .putInt(KEY_LAST_DETECTED_TYPE, actionType)
                    .putLong(LAST_TIMESTAMP, timeSt)
                    .apply()
            when (lastActionType) {
                //TODO Remove hardcoded values for max and average speed
                ON_BICYCLE -> {
                    if (!mGoogleApiClient!!.isConnected) mGoogleApiClient?.connect()
                    saveCyclingData(CyclingModel(lastTimestamp,timeSt,getAllUsers()[0],distance/1000,maxSpeed, 15.00))
                }
                RUNNING -> {
                    if (!mGoogleApiClient!!.isConnected) mGoogleApiClient?.connect()
                    saveRunningData(RunningModel(lastTimestamp,timeSt,getAllUsers()[0],distance/1000,maxSpeed.toLong(), 10))
                }
                WALKING -> {
                    if (!mGoogleApiClient!!.isConnected) mGoogleApiClient?.connect()
                    saveWalkingData(WalkingModel(lastTimestamp,timeSt,getAllUsers()[0],distance/1000))
                    driving(false)
//                    if(lastActionType == IN_VEHICLE) {
//                        rewardNotification(this)
//                    }
                }
                IN_VEHICLE -> {

                    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                        startForegroundService(Intent(this, SensorFusionService::class.java))
                        println("FOREGROUND MONITOR ACTIVITY")
                    }else {
                        startService(Intent(this, SensorFusionService::class.java))
                        println("BACKGROUND MONITOR ACTIVITY")
                    }

                    if (!mGoogleApiClient!!.isConnected) mGoogleApiClient?.connect()
                    saveDrivingData(DrivingModel(lastTimestamp,timeSt,getAllUsers()[0],distance/1000))
                }
                STILL -> {
                    saveStillData(StillModel(lastTimestamp, timeSt, getAllUsers()[0]))
                    Toast.makeText(this, "DETEKTOVAN STILL", Toast.LENGTH_LONG ).show()
                }
            }
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                startForeground(1, createNotification(this,actionType))
            }else {
                startRecognitionNotification(this, actionType)
            }
        }
    }

    fun driving(driving: Boolean) {
        val intStart = Intent("QualityTracking")
        intStart.putExtra("driving", driving)
        sendBroadcast(intStart)
    }

    companion object {
        val trackedActivities = listOf(ON_BICYCLE, RUNNING, WALKING, IN_VEHICLE, STILL, ON_FOOT)
        var locations = arrayListOf<LatLng>()
    }

    override fun onLocationChanged(location: Location) {
        if (location.accuracy < 100)
            locations.add(LatLng(location.latitude, location.longitude))
        if(location.hasSpeed()) {
            val potentialMaxSpeed = location.speed
            if (maxSpeed < potentialMaxSpeed)
                maxSpeed = potentialMaxSpeed.toDouble()
        }
    }

    private fun startLocationUpdates() {

        val fastestInterval: Long = 1000
        val updateInterval = defaultSharedPreferences.getString(Constants.LOCATION_UPDATE_INTERVAL, (10 * 1000).toString())
        val precision = defaultSharedPreferences.getString(Constants.LOCATION_PRECISION, LocationRequest.PRIORITY_HIGH_ACCURACY.toString())
        val mLocationRequest = LocationRequest.create()
                .setPriority(precision!!.toInt())
                .setInterval(updateInterval!!.toLong())
                .setFastestInterval(fastestInterval)
        if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
            longToast("No permission to use gps")
            return
        }
        LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient, mLocationRequest, this)

//        LocationServices.getFusedLocationProviderClient(this).requestLocationUpdates(mLocationRequest, LocationCallback(), Looper.getMainLooper())

    }

    override fun onConnectionSuspended(result: Int) {}

    override fun onConnected(result: Bundle?) {
        startLocationUpdates()
    }

    override fun onConnectionFailed(result: ConnectionResult) {}

}
这是我在舱单上声明的服务

<receiver
            android:name=".service.ServiceBroadcastReceiver"
            android:enabled="true"
            android:exported="true"
            android:label="RestartServiceWhenStopped"
            android:process=":remote">
            <intent-filter>
                <action android:name="RestartService" />
            </intent-filter>
        </receiver>

事实上,我的问题在于我如何调用我的服务,在声明广播公司并在特定事件中触发它后,它开始工作

嗨!当你说它不起作用时,你的意思是它引发了一个异常,服务崩溃或者它什么都不做?很抱歉,我没有提供信息,但是是的,它什么都没做。准确地说,它甚至根本没有启动这项服务,我确实在我的onCreate中放了一些祝酒词和印刷品,没有一个出现在Moto和诺基亚上,但三星和华为都出现了,所以这项服务根本没有启动这是我的问题