Assigned
Status Update
Comments
ki...@google.com <ki...@google.com>
ki...@google.com <ki...@google.com> #2
for example, many different devices return the same longitude and latitude.such as : longitude is 121.474000 and latitude is 31.230001.
i donnot understand why is the data the same?
i donnot understand why is the data the same?
Description
mediaSession.setPlaybackState(
PlaybackStateCompat.Builder()
.setActions(
PlaybackStateCompat.ACTION_PLAY_PAUSE or
PlaybackStateCompat.ACTION_SKIP_TO_NEXT or
PlaybackStateCompat.ACTION_SKIP_TO_PREVIOUS or
PlaybackStateCompat.ACTION_SEEK_TO or
PlaybackStateCompat.ACTION_SKIP_TO_PREVIOUS
)
.addCustomAction(
PlaybackStateCompat.CustomAction.Builder(
ACTION_SEEK_FORWARD,
"Skip forward",
R.drawable.rewind_arrow
).build()
)
.addCustomAction(
PlaybackStateCompat.CustomAction.Builder(
ACTION_SEEK_BACK,
"Skip back",
R.drawable.rewind_arrow
).build()
)
.build()
)