ייחוס הנתונים

לכל נקודה ב-Google Fit יש מקור נתונים משויך. מקורות נתונים מכילים מידע שמזהה את האפליקציה או את המכשיר שאוסף או משנה את הנתונים. שם החבילה של האפליקציה זמין למקורות נתונים שלא מייצגים חיישן פיזי.

ב-Google Fit ניתן לבצע את הפעולות הבאות:

  • יש להפעיל כוונה להציג נתונים שמשויכים לאפליקציה ספציפית.
  • קבלת כוונות להצגת נתונים באמצעות האפליקציה.
  • בודקים איזו אפליקציה הוסיפה סשן. לקבלת מידע נוסף ראו עבודה עם סשנים.

איך לקבוע איזו אפליקציה הוסיפה נקודה על הגרף

כדי לקבל את שם החבילה של האפליקציה שהכניסה נקודה על הגרף, תחילה שיחה DataPoint.getOriginalDataSource כדי לקבל את מקור הנתונים, ואז קוראים DataSource.getAppPackageName method:

Kotlin

val dataPoint : DataPoint = ...
val dataSource = dataPoint.originalDataSource
val appPkgName = dataSource.appPackageName

Java

DataPoint dataPoint = ...
DataSource dataSource = dataPoint.getOriginalDataSource();
String appPkgName = dataSource.getAppPackageName();

קבלת כוונות מאפליקציות אחרות

כדי לרשום את האפליקציה לקבלת כוונות מאפליקציות אחרות של בריאות וכושר, להצהיר על מסנן Intent במניפסט שדומה לזה:

<intent-filter>
    <action android:name="vnd.google.fitness.VIEW" />
    <data android:mimeType="vnd.google.fitness.data_type/com.google.step_count.cumulative" />
    <data android:mimeType="vnd.google.fitness.data_type/com.google.step_count.delta" />
</intent-filter>

כל כוונת רכישה שהאפליקציה שלך מקבלת מ-Google Fit היא מסוג אחד בלבד, אבל אפשר לסנן לפי כמה סוגי MIME במסנן Intent אחד. של האפליקציה שלך מסנן Intent צריך לכלול את כל סוגי הנתונים שהאפליקציה תומכת בהם, כולל סוגי נתונים מותאמים אישית.

הכוונות לגבי כושר גופני כוללות את התוספות הבאות:

  • vnd.google.gms.fitness.start_time
  • vnd.google.gms.fitness.end_time
  • vnd.google.gms.fitness.data_source

אפשר לקבל נתונים מהתוספות האלה באופן הבא:

Kotlin

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    ...
    val supportedType = DataType.getMimeType(DataType.TYPE_STEP_COUNT_DELTA)

    if (Intent.ACTION_VIEW == intent.action && supportedType == intent.type) {
        // Get the intent extras
        val startTime = Fitness.getStartTime(intent, TimeUnit.MILLISECONDS);
        val endTime = Fitness.getEndTime(intent, TimeUnit.MILLISECONDS)
        val dataSource = DataSource.extract(intent)
    }
}

Java

@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    ...
    String supportedType = DataType.getMimeType(DataType.TYPE_STEP_COUNT_DELTA);

    if (Intent.ACTION_VIEW.equals(getIntent().getAction()) && supportedType.equals(getIntent().getType())
    {
        // Get the intent extras
        long startTime = Fitness.getStartTime(getIntent(), TimeUnit.MILLISECONDS);
        long endTime = Fitness.getEndTime(getIntent(), TimeUnit.MILLISECONDS);
        DataSource dataSource = DataSource.extract(getIntent());
    }
}

כדי לקבל את סוג ה-MIME לסוג נתונים בהתאמה אישית, משתמשים ב MIME_TYPE_PREFIX קבוע:

Kotlin

val supportedType = DataType.MIME_TYPE_PREFIX + "com.company.customdatatype"

Java

String supportedType = DataType.MIME_TYPE_PREFIX + "com.company.customdatatype";

הפעלת כוונה להציג נתונים

כדי להפעיל כוונה לצפות בנתונים באפליקציה אחרת, צריך להשתמש ב HistoryApi.ViewIntentBuilder class:

Kotlin

// Inside your activity
val startTime = ...
val endTime = ...
val dataSource = ...
val dataType = ...

val fitIntent = HistoryApi.ViewIntentBuilder(this, dataType)
    .setTimeInterval(startTime, endTime, TimeUnit.MILLISECONDS)
    .setDataSource(dataSource) // Optional if a specific data source is desired
    .setPreferredApplication("com.example.app") // Optional if you'd like a
    // specific app to handle the intent if that app is installed on the device
    .build()

Java

// Inside your activity
long startTime = ...
long endTime = ...
DataSource dataSource = ...
DataType dataType = ...

Intent fitIntent = new HistoryApi.ViewIntentBuilder(this, dataType)
    .setTimeInterval(startTime, endTime, TimeUnit.MILLISECONDS)
    .setDataSource(dataSource) // Optional if a specific data source is desired
    .setPreferredApplication("com.example.app") // Optional if you'd like a
    // specific app to handle the intent if that app is installed on the device
    .build();

מידע נוסף על השימוש בכוונות וכוונת רכישה מסננים.