Available Methods
- getString ( )
- putLong ( )
- getDataMapArrayList ( )
- putInt ( )
- putString ( )
- putDataMapArrayList ( )
- getInt ( )
- getDouble ( )
- putDouble ( )
- putBoolean ( )
- getLong ( )
- containsKey ( )
- getBoolean ( )
- fromBundle ( )
- getStringArrayList ( )
- putByteArray ( )
- keySet ( )
- getDataMap ( )
- fromByteArray ( )
- putFloatArray ( )
- getAsset ( )
- getFloatArray ( )
- StoredType ( )
- getFloat ( )
- putStringArrayList ( )
- putFloat ( )
- putAsset ( )
Related Classes
- java.util.Collections
- android.os.Bundle
- android.content.Context
- java.util.Date
- java.util.concurrent.TimeUnit
- android.util.Log
- android.content.Intent
- java.util.Locale
- android.net.Uri
- android.graphics.Bitmap
- android.graphics.Paint
- android.content.SharedPreferences
- com.google.gson.Gson
- android.app.PendingIntent
- android.preference.PreferenceManager
- com.google.gson.GsonBuilder
- android.app.NotificationManager
- android.app.Notification
- android.util.Base64
- android.os.PowerManager
- com.google.android.gms.common.ConnectionResult
- com.google.android.gms.common.api.GoogleApiClient
- android.support.v4.content.LocalBroadcastManager
- com.google.android.gms.wearable.Wearable
- com.google.android.gms.wearable.Node
Java Code Examples for com.google.android.gms.wearable.DataMap#StoredType
The following examples show how to use
com.google.android.gms.wearable.DataMap#StoredType .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DataBundleUtil.java From android_external_GmsLib with Apache License 2.0 | 4 votes |
static TypeHelper getTypeHelper(DataMap.StoredType type) { return getTypeHelper(type.getTypeCode()); }
Example 2
Source File: DataBundleUtil.java From android_external_GmsLib with Apache License 2.0 | 4 votes |
static TypeHelper getListInnerTypeHelper(DataMap.StoredType type) { return getTypeHelper(type.getListType()); }