Home
last modified time | relevance | path

Searched refs:steps (Results 1 – 8 of 8) sorted by relevance

/development/samples/browseable/RecipeAssistant/
D_index.jd11steps; when ready, you can click on the START action in the action bar to send the steps to the
12 … wearable. On the wearable device, the steps are displayed as a multi-page notification, with one
/development/samples/browseable/BatchStepSensor/
D_index.jd14 steps since a listener was first registered for this sensor.
15 … Both sensors only count steps while a listener is registered. This sample only covers the
/development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/
DRecipe.java78 JSONArray steps = json.getJSONArray(Constants.RECIPE_FIELD_STEPS); in fromJson() local
79 for (int i = 0; i < steps.length(); i++) { in fromJson()
80 JSONObject step = steps.getJSONObject(i); in fromJson()
/development/samples/browseable/WatchFace/
D_index.jd10 opengl, calendar, steps, interactive, etc. It also includes a watch-side configuration example.
27 not configured the Google Fit Wear App, then you may get zero steps until one of the two is setup.
/development/tools/idegen/
DREADME22 Repeat these steps after each sync...
49 Repeat these steps after each sync...
/development/tools/repo_diff/
DREADME.md64 The first two steps are self explanatory. The method
91 This is addressed in two steps:
/development/tools/labpretest/
DREADME35 Here are the steps to add a new device:
/development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
DInteractiveLineGraphView.java468 private static void computeAxisStops(float start, float stop, int steps, AxisStops outStops) { in computeAxisStops() argument
470 if (steps == 0 || range <= 0) { in computeAxisStops()
476 double rawInterval = range / steps; in computeAxisStops()