Questions tagged [google-now]

Google Now is an intelligent personal assistant app for Android and iPhone/iPad devices, that aims to assist your life by showing information based on the date, your location, and upcoming events.

Google Now is an intelligent personal assistant app for Android and iPhone/iPad devices, that aims to assist your life by showing information based on the date, your location, and upcoming events.

Google Now is linked to your Google account, and uses the vast information contained in the account to help preempt and predict your future needs. For example, by being connected to your GMail emails, it can scan for upcoming Flights, Hotel Reservations, and other events, and alert you when the time is approaching.

Google Now is integrated with many Google products, including...

  • Google Search
  • Google Calendar
  • GMail / Google Mail
  • Google Maps
  • Google Places

Additionally, as it is an app on mobile devices, it can also use information obtained from the mobile device, such as your geolocation. Such uses for this include alerting you when you need to leave for work if the route has high traffic, and telling you the weather in your current location.

Useful References:

149 questions
8
votes
1 answer

Launch Android app with custom Google Now command

I've taken a look at some other questions, but never saw the answer I was looking for. I can make an activity to receive system intents, such as incoming messages. Google Now intents like AlarmClock.ACTION_SET_ALARM can also be received by the app.…
8
votes
1 answer

Replication Google's Search iOS Cards Animation

I'm trying to replicate this at the moment: If you're familiar with Google's app, it looks like a UICollectionView with a custom flow layout. I'm expanding on a question that has been closed with some additional code. Here's the link to the other…
STANGMMX
  • 973
  • 7
  • 18
  • 31
7
votes
0 answers

Android Swipe Dismiss multiple items for RecyclerView

I will need to create cards layout mimicking cards found in Google Now. To do so, I've used a RecyclerView and each row as both the header and item. Pretty skeptical with this approach however. The problem I'm facing is to mimic the swiping…
barryloh
  • 101
  • 1
  • 5
7
votes
1 answer

How does Google Now (Now on Tap) search inside apps?

So Google has just released a new feature for Google Now called Now on Tap. It enables a user to get contextual help from different apps (The Verge video example). Does it simply take a screenshot of the current app and use OCR to extract the…
Gil Julio
  • 812
  • 1
  • 9
  • 18
7
votes
3 answers

How do I get my app to appear in Google Now's Phone Search list?

I want my app to be able to handle search requests from Google Now and appear in its Phone Search list, but I can't find any documentation on this. Does anyone have a link they can offer up?
Seanonymous
  • 1,304
  • 10
  • 30
6
votes
1 answer

List of voice commands which trigger heart rate check

What is the list of all existing voice commands which create an intent with vnd.google.fitness.VIEW action and vnd.google.fitness.data_type/com.google.heart_rate.bpm mime type? The documentation shows only two of them: "OK Google, what’s my heart…
EyesClear
  • 28,077
  • 7
  • 32
  • 43
6
votes
2 answers

Schemas not showing in Google Now or Google Search

I am using the App Script Tutorial to send emails to my Gmail account. I have been sending emails with various schema to see whether they appear in other Google products. According to the bottom of this page and this page, schemas such as Flights…
wattostudios
  • 8,666
  • 13
  • 43
  • 57
5
votes
0 answers

Replicate Google Now search animation

In the google now app when the search button is pressed (or you say "okay, google") then a small card pops up with a fluctuating circle representing the volume of the audio it's receiving and a decoding-type animation as it translates from speech to…
ThatGuyThere
  • 365
  • 2
  • 10
  • 23
5
votes
2 answers

Launch Google Now or phone default voice search?

I need to give users a method to launch their phone's voice assistant from my app, be it Google Now or anything else. When searching on how to do this I keep finding explanations on how to get voice input while I just want to launch Google Now in…
lisovaccaro
  • 32,502
  • 98
  • 258
  • 410
5
votes
1 answer

How to Extend Google Now Voice Commands in Android with Custom Actions

I recently installed the Google Now Launcher on my Nexus 4, and it got me thinking about how I could use it to interact with my own apps. While I can open my app by asking for it by title, I was wondering if there's a way to intercept the voice…
Paul Ruiz
  • 2,396
  • 3
  • 27
  • 47
5
votes
2 answers

Google Now integration with app

I'm trying to build an voice controlled application which can perform some tasks depending on the commands. I wanted to add Google Now features also to it so that if the user asks some questions like about weather info, news, about celebrities etc…
Shashi
  • 51
  • 1
  • 2
5
votes
1 answer

Options for each item of listview Android

I want to create options for each ListView item like Google Now Android app. I Have created a custom ListView and each item in the ListView will have a overflow image as in Google Now app's UI Card. Now when I click on that overflow image, I want a…
gohil90
  • 517
  • 5
  • 16
4
votes
2 answers

Android: how to open Speech Input with command voice from my app

With this code: private void promptSpeechInput() { Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM); …
4
votes
0 answers

Voice action can not find my app

I am trying to add voice action to my music app. When I do the voice action and said: Play Someone like you Google voice search recognized it is a song and it let user chooses what apps to open this intent with (Which include my app). When…
kaho
  • 4,746
  • 1
  • 16
  • 24
4
votes
0 answers

Custom Google Now commands

How can I intercept Google Now voice commands? I want that for example my app say Google Now "If the query contains xy send me an intent". How can I do that? I found this (https://developer.android.com/guide/components/intents-common.html#Now) but…
qwertz
  • 41
  • 1
1
2
3
9 10