Androidデバイスを使用して、ユーザーが歩いている、サイクリングしている、または運転しているのをどのように検出できますか? Google Fitアプリ)を確認しました ランニング、サイクリング、運転を区別しますこれらのアクティビティを区別するためにどのアルゴリズムを使用するべきかについて、私は困惑しています。
加速度センサーを使用する必要があることはわかっています。しかし、それでもこれらの活動を区別することはできません。
これにはGooglePlayServicesを使用できます。
これは、それぞれの信頼レベルでユーザーアクティビティを返すActivityRecognitionの特別なAPIを提供します。
http://developer.Android.com/training/location/activity-recognition.html
この質問はかなり古いですが、そこには新しいテクノロジーがあるので、まだこの問題が発生している場合は、言及する価値があると思いました。
私は3つのオプションを考え出すことができます:
Neura の無料のSDKを使用できます。これにより、ユーザーが運転を開始/終了したとき、歩行を開始/終了したとき、ウォーキングを開始/終了したときに、イベントを送信できます 可能なイベントの詳細を読むNeuraから取得 。
これをチェックしてください git project :基本的に、プロジェクトにはNueraが検出できるすべてのイベントがあります。このプロジェクトを取り、あなた自身のものにすることは非常に簡単です。
このNeura sdkオプションを使用することを強くお勧めします。
フェンスを宣言するには、googleの FenceApi を使用できます。たとえば、これはドライビングフェンスを検出するためのコードです。
このアプローチは良いように見えますが、このAPIがイベントが発生したときに通知しない場合があり、APIがそのイベントを通知したときにウォーキング/ランニングを開始してから時間がかかる場合があるという事実に直面しました。
a。アプリのbuild.gradleファイルへの依存関係を含めます。
compile 'com.google.Android.gms:play-services-location:+'
compile 'com.google.Android.gms:play-services-contextmanager:+'
b。マニフェストの定義:
<uses-permission Android:name="com.google.Android.gms.permission.ACTIVITY_RECOGNITION" />
<uses-permission Android:name="Android.permission.INTERNET" />
<uses-permission Android:name="Android.permission.ACCESS_FINE_LOCATION" />
<application
Android:allowBackup="true"
Android:icon="@mipmap/ic_launcher"
Android:label="@string/app_name"
Android:supportsRtl="true"
Android:theme="@style/AppTheme" >
<meta-data
Android:name="com.google.Android.awareness.API_KEY"
Android:value="PUT_YOUR_AWARENESS_KEY_HERE" />
<activity Android:name=".MainActivity" >
<intent-filter>
<action Android:name="Android.intent.action.MAIN" />
<category Android:name="Android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
PUT_YOUR_AWARENESS_KEY_HERE:キーを生成する必要があります here 。
c。あなたのMainActivityクラス-コードに添付された説明:
public class MainActivity extends Activity {
private GoogleApiClient mGoogleApiClient;
private PendingIntent mPendingIntent;
private FenceReceiver mFenceReceiver;
// The intent action which will be fired when your fence is triggered.
private final String FENCE_RECEIVER_ACTION = BuildConfig.APPLICATION_ID + "FENCE_RECEIVER_ACTION";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mGoogleApiClient = new GoogleApiClient.Builder(this).addApi(Awareness.API).build();
mGoogleApiClient.connect();
// Set up the PendingIntent that will be fired when the fence is triggered.
mPendingIntent = PendingIntent.getBroadcast(this, 0, new Intent(FENCE_RECEIVER_ACTION), 0);
// The broadcast receiver that will receive intents when a fence is triggered.
mFenceReceiver = new FenceReceiver();
registerReceiver(mFenceReceiver, new IntentFilter(FENCE_RECEIVER_ACTION));
createFence(DetectedActivityFence.IN_VEHICLE, "InVehicleFence");
}
@Override
public void onDestroy() {
try {
unregisterReceiver(mFenceReceiver); //Don't forget to unregister the receiver
} catch (Exception e) {
e.printStackTrace();
}
super.onDestroy();
}
private void createFence(int detectedActivityFence, final String fenceKey) {
AwarenessFence fence = DetectedActivityFence.during(detectedActivityFence);
// Register the fence to receive callbacks.
Awareness.FenceApi.updateFences(
mGoogleApiClient, new FenceUpdateRequest.Builder().addFence(fenceKey, fence, mPendingIntent)
.build()).setResultCallback(new ResultCallback<Status>() {
@Override
public void onResult(@NonNull Status status) {
if (status.isSuccess()) {
Log.i(getClass().getSimpleName(), "Successfully registered.");
} else {
Log.e(getClass().getSimpleName(), "Could not be registered: " + status);
}
}
});
}
// Handle the callback on the Intent.
public class FenceReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
FenceState fenceState = FenceState.extract(intent);
switch (fenceState.getCurrentState()) {
case FenceState.TRUE:
Log.i(fenceState.getFenceKey(), "Active");
break;
case FenceState.FALSE:
Log.i(fenceState.getFenceKey(), "Not Active");
break;
}
}
}
}
このサンプルは運転状態を検出するためだけのものですが、次のような他のアクティビティメソッドで 'createFence'を呼び出すことができます。
createFence(DetectedActivityFence.TILTING, "TiltingFence");
createFence(DetectedActivityFence.WALKING, "WalkingFence");
createFence(DetectedActivityFence.ON_FOOT, "OnFootFence");
createFence(DetectedActivityFence.RUNNING, "RunningFence");
DetectActivity を使用して、事前定義されたタイプのアクティビティを区別できます。
Google Location and Activity Recognition API をご覧ください。それがまさにあなたが探しているものだと思います。