บันทึกข้อมูลการออกกำลังกาย

API การบันทึกช่วยให้แอปของคุณขอพื้นที่เก็บข้อมูลเซ็นเซอร์อัตโนมัติใน แบบประหยัดพลังงานโดยสร้างการสมัครใช้บริการ เชื่อมโยงการสมัครใช้บริการแล้ว กับแอป Android และประกอบด้วยประเภทข้อมูลการออกกำลังกายหรือข้อมูลเฉพาะ แหล่งที่มา

คุณสามารถสร้างการสมัครใช้บริการได้หลายรายการสำหรับข้อมูลหรือแหล่งข้อมูลประเภทต่างๆ ในแอปของคุณ Google Fit จะจัดเก็บข้อมูลการออกกำลังกายจากการสมัครใช้บริการที่ใช้งานอยู่ แม้ในขณะที่แอปไม่ได้ทำงานอยู่ และคืนค่าการสมัครใช้บริการเหล่านี้เมื่อ ระบบจะรีสตาร์ท

ข้อมูลที่บันทึกไว้จะอยู่ในประวัติการออกกำลังกายของผู้ใช้ หากคุณต้องการ เพื่อแสดงข้อมูลในแอปแบบเรียลไทม์ ให้ใช้ Sensors API ร่วมกับ Recording API เพื่อบันทึก ข้อมูลการออกกำลังกายพร้อมข้อมูลเมตาของเซสชัน Sessions API

สมัครใช้บริการข้อมูลการออกกำลังกาย

หากต้องการขอรวบรวมข้อมูลเซ็นเซอร์ในเบื้องหลังในแอป ให้ใช้ RecordingClient.subscribe ดังที่แสดงในข้อมูลโค้ดต่อไปนี้

Kotlin

Fitness.getRecordingClient(this, GoogleSignIn.getAccountForExtension(this, fitnessOptions))
    // This example shows subscribing to a DataType, across all possible data
    // sources. Alternatively, a specific DataSource can be used.
    .subscribe(DataType.TYPE_STEP_COUNT_DELTA)
    .addOnSuccessListener {
        Log.i(TAG, "Successfully subscribed!")
    }
    .addOnFailureListener { e ->
        Log.w(TAG, "There was a problem subscribing.", e)
    }

Java

Fitness.getRecordingClient(this, GoogleSignIn.getAccountForExtension(this, fitnessOptions))
        // This example shows subscribing to a DataType, across all possible
        // data sources. Alternatively, a specific DataSource can be used.
        .subscribe(DataType.TYPE_STEP_COUNT_DELTA)
        .addOnSuccessListener(unused ->
                Log.i(TAG, "Successfully subscribed!"))
        .addOnFailureListener( e ->
        Log.w(TAG, "There was a problem subscribing.", e));

หากเพิ่มการสมัครใช้บริการเรียบร้อยแล้ว Google Fit จะจัดเก็บการออกกำลังกาย ข้อมูลประเภท TYPE_STEP_COUNT_DELTA ในประวัติการออกกำลังกายในนามของแอปของคุณ การสมัครใช้บริการนี้จะปรากฏใน รายการการสมัครใช้บริการที่ใช้งานอยู่สำหรับแอปของคุณ

หากต้องการสมัครใช้บริการข้อมูลการออกกำลังกายประเภทอื่นๆ ในแอป ให้ทำตามขั้นตอนใน ตัวอย่างก่อนหน้านี้ แต่ให้ข้อมูลการออกกำลังกายประเภทต่างๆ ในแต่ละครั้ง

แสดงรายการการสมัครใช้บริการที่ใช้งานอยู่

หากต้องการดูรายการการสมัครใช้บริการที่ใช้งานอยู่สำหรับแอปของคุณ ให้ใช้ RecordingClient.listSubscriptions ดังที่แสดงในข้อมูลโค้ดต่อไปนี้

Kotlin

Fitness.getRecordingClient(this, GoogleSignIn.getAccountForExtension(this, fitnessOptions))
    .listSubscriptions()
    .addOnSuccessListener { subscriptions ->
        for (sc in subscriptions) {
            val dt = sc.dataType
            Log.i(TAG, "Active subscription for data type: ${dt.name}")
        }
    }

Java

Fitness.getRecordingClient(this, GoogleSignIn.getAccountForExtension(this, fitnessOptions))
        .listSubscriptions()
        .addOnSuccessListener(subscriptions -> {
            for (Subscription sc : subscriptions) {
                DataType dt = sc.getDataType();
                Log.i(TAG, "Active subscription for data type: ${dt.name}");
            }
    });
}

ยกเลิกการสมัครรับข้อมูลการออกกำลังกาย

หากต้องการหยุดการรวบรวมข้อมูลเซ็นเซอร์ในแอป ให้ใช้ RecordingClient.unsubscribe ดังที่แสดงในข้อมูลโค้ดต่อไปนี้

Kotlin

Fitness.getRecordingClient(this, GoogleSignIn.getAccountForExtension(this, fitnessOptions))
    // This example shows unsubscribing from a DataType. A DataSource should
    // be used where the subscription was to a DataSource. Alternatively, if
    // the client doesn't maintain its subscription information, they can use
    // an element from the return value of listSubscriptions(), which is of
    // type Subscription.
    .unsubscribe(DataType.TYPE_STEP_COUNT_DELTA)
    .addOnSuccessListener {
        Log.i(TAG,"Successfully unsubscribed.")
    }
    .addOnFailureListener { e->
        Log.w(TAG, "Failed to unsubscribe.")
        // Retry the unsubscribe request.
    }

Java

Fitness.getRecordingClient(this, GoogleSignIn.getAccountForExtension(this, fitnessOptions))
        // This example shows unsubscribing from a DataType. A DataSource
        // should be used where the subscription was to a DataSource.
        // Alternatively, if the client doesn’t maintain its subscription
        // information, they can use an element from the return value of
        // listSubscriptions(), which is of type Subscription.
        .unsubscribe(DataType.TYPE_STEP_COUNT_DELTA)
        .addOnSuccessListener(unused ->
            Log.i(TAG,"Successfully unsubscribed."))
        .addOnFailureListener(e -> {
            Log.w(TAG, "Failed to unsubscribe.");
            // Retry the unsubscribe request.
        });
}