Android活动识别不适用于Nexus 5

Android活动识别不适用于Nexus 5,android,google-play-services,activity-recognition,Android,Google Play Services,Activity Recognition,我有一个使用谷歌活动识别更新的代码。现在,突然之间,它们似乎每秒发送几次更新,或者从未发送过更新,尽管每20秒就有一次请求。我没有更改代码并检查早期版本,但遇到了相同的问题 我从教程中构建了一个最小的示例,但我的Nexus5设备也没有得到任何活动更新。我的HTC Desire(基于安卓2.3.7的Mildwild5.0)运行得非常好。我怀疑Google Play服务,但两款手机都安装了4.2.43版 主要活动: package com.example.testactivities; import

我有一个使用谷歌活动识别更新的代码。现在,突然之间,它们似乎每秒发送几次更新,或者从未发送过更新,尽管每20秒就有一次请求。我没有更改代码并检查早期版本,但遇到了相同的问题

我从教程中构建了一个最小的示例,但我的Nexus5设备也没有得到任何活动更新。我的HTC Desire(基于安卓2.3.7的Mildwild5.0)运行得非常好。我怀疑Google Play服务,但两款手机都安装了4.2.43版

主要活动:

package com.example.testactivities;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.util.Log;
import android.view.Menu;

import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GooglePlayServicesClient.ConnectionCallbacks;
import com.google.android.gms.common.GooglePlayServicesClient.OnConnectionFailedListener;
import com.google.android.gms.location.ActivityRecognitionClient;

public class MainActivity extends FragmentActivity implements
ConnectionCallbacks, OnConnectionFailedListener {
    // Constants that define the activity detection interval
    public static final int MILLISECONDS_PER_SECOND = 1000;
    public static final int DETECTION_INTERVAL_SECONDS = 1;
    public static final int DETECTION_INTERVAL_MILLISECONDS = 
            MILLISECONDS_PER_SECOND * DETECTION_INTERVAL_SECONDS;
    /*
     * Store the PendingIntent used to send activity recognition events
     * back to the app
     */
    private PendingIntent mActivityRecognitionPendingIntent;
    // Store the current activity recognition client
    private ActivityRecognitionClient mActivityRecognitionClient;
    // Flag that indicates if a request is underway.
    private boolean mInProgress;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        /*
         * Instantiate a new activity recognition client. Since the
         * parent Activity implements the connection listener and
         * connection failure listener, the constructor uses "this"
         * to specify the values of those parameters.
         */
        mActivityRecognitionClient =
                new ActivityRecognitionClient(this, this, this);
        /*
         * Create the PendingIntent that Location Services uses
         * to send activity recognition updates back to this app.
         */
        Intent intent = new Intent(
                this.getApplicationContext(), ActivityRecognitionIntentService.class);
        /*
         * Return a PendingIntent that starts the IntentService.
         */
        mActivityRecognitionPendingIntent =
                PendingIntent.getService(this, 0, intent,
                PendingIntent.FLAG_UPDATE_CURRENT);
        // Start with the request flag set to false
        mInProgress = false;
        this.startUpdates();
    }

    /**
     * Request activity recognition updates based on the current
     * detection interval.
     *
     */
     public void startUpdates() {
        // If a request is not already underway
        if (!mInProgress) {
            // Indicate that a request is in progress
            mInProgress = true;
            // Request a connection to Location Services
            mActivityRecognitionClient.connect();
        //
        } else {
            /*
             * A request is already underway. You can handle
             * this situation by disconnecting the client,
             * re-setting the flag, and then re-trying the
             * request.
             */
        }
    }

     /*
      * Called by Location Services once the location client is connected.
      *
      * Continue by requesting activity updates.
      */
     @Override
     public void onConnected(Bundle dataBundle) {
         Log.v("EXAMPLE","connected");
         /*
          * Request activity recognition updates using the preset
          * detection interval and PendingIntent. This call is
          * synchronous.
          */
         mActivityRecognitionClient.requestActivityUpdates(
                 DETECTION_INTERVAL_MILLISECONDS,
                 mActivityRecognitionPendingIntent);
         /*
          * Since the preceding call is synchronous, turn off the
          * in progress flag and disconnect the client
          */
         mInProgress = false;
         mActivityRecognitionClient.disconnect();
     }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    public void onConnectionFailed(ConnectionResult arg0) {
        Log.v("EXAMPLE","Connection failed");

    }

    @Override
    public void onDisconnected() {
        Log.v("EXAMPLE","Disconnected");
    }

}
舱单:

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

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="19" />
    <uses-permission android:name="com.google.android.gms.permission.ACTIVITY_RECOGNITION"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />
        <activity
            android:name="com.example.testactivities.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>
        <service
            android:name="com.example.testactivities.ActivityRecognitionIntentService"/>
    </application>

</manifest>

更新:我相信卡诺皮发现了正确的问题。当设备仍然具有高置信度时,它根本不会激发识别意图。这与一年前(在其他设备上)完全不同。为了检测设备是否仍在运行,我用时间戳记录最后一次传入的活动,并定期检查。旧的时间戳表示设备在这段时间内一直处于静止状态。

我建议您增加检测间隔,传感器至少需要6到7秒才能检测到活动的变化。此外,我还观察到,如果设备在一段时间内仍处于活动状态,ActivityRecognition会停止激发意图。当设备再次运行时,它们会立即被触发。

也许您已经在Nexus 5设备上禁用了位置服务…

活动识别需要激活/启用位置服务。

正如canopi所建议的,增加检测“时间”,其中0将提供最快的结果

我遇到了同样的问题,我没有直接在onCreate上添加build()部分,而是添加了下面的方法并在onCreate()上调用它。试着从这里追踪代码。我把密码从那里删掉了

protected synchronized void buildGoogleApiClient() {
    mGoogleApiClient = new GoogleApiClient.Builder(this)
            .addConnectionCallbacks(this)
            .addOnConnectionFailedListener(this)
            .addApi(ActivityRecognition.API)
            .build();
}

同时将
buildGoogleAppClient()
添加到onCreate方法中。

存在完全相同的问题。我注意到,在我调用ActivityRecognitionClient上的disconnect之后,它将永远不会触发onDisconnected回调。这似乎是罪魁祸首,因为我让它工作了一个小时左右,一旦断开连接,更新就开始出现。很高兴听到有人有同样的问题。我将检查onDisconnected回调。我想那也不会触发。它应该在活动改变时触发,这样它在长时间静止时就不会触发。我不担心。检测间隔绝对不是问题。尽管线程很旧,但感谢您的回答。我更新了我的问题,并将卡诺皮的答案标记为正确。
protected synchronized void buildGoogleApiClient() {
    mGoogleApiClient = new GoogleApiClient.Builder(this)
            .addConnectionCallbacks(this)
            .addOnConnectionFailedListener(this)
            .addApi(ActivityRecognition.API)
            .build();
}