Questions tagged [google-glass]

Google Glass is a project to create a commercially-viable, next-generation wearable smart device in the form of a pair of glasses featuring a head-mounted display. The product allows users to interact with the device via voice and allows other smartphone-like functionality. Google Glass runs on Android with additional APIs for developers.

Google Glass is a research and development program by Google to develop an augmented reality head-mounted display (HMD). Google Glass runs and displays information in smartphone-like format hands-free and interacts with the Internet via natural language voice commands. The prototype's functionality and minimalist appearance (aluminium strip with 2 nose pads) has been compared to Steve Mann's EyeTap. (from wikipedia)

1569 questions
0
votes
1 answer

OnclikListener and scroll on Google glass

I have a pair of Google glass and I would like to install an App for Tablet and smartphone I developed myself. The App use the API 19 as well as the the Glass. In this app I have a button and the view is to long for the glass, so we are only able to…
0
votes
3 answers

Voice command not working on my glass app

My manifest file is as below
Jose
  • 51
  • 2
  • 6
0
votes
1 answer

Google Glass How to know if the glass is worn

I know this problem is really vague but i am really looking for a informative answer of how to do it.. or stuff like that.. A question on Stackoverflow already.. There are two ways to do it. One is the on Head wake and the other is notification…
medampudi
  • 399
  • 3
  • 15
0
votes
2 answers

open gallery google glass

I want to launch gallery to pick an image in my google glass app. for android mobile it is straight Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("image/*"); startActivityForResult(intent, REQ_SELECT_FILE); when i am running…
Shailendra Singh Rajawat
  • 8,172
  • 3
  • 35
  • 40
0
votes
2 answers

How to gracefully shutdown Android Service running a speech RecognizerIntent?

I have implemented a version of the SilentVoiceRecognitionService. However, I have an issue with the Service not being shutdown properly to the extent that the next time the application is started, the service throws a ERROR_RECOGNIZER_BUSY. In…
gdoubleu
  • 72
  • 1
  • 7
0
votes
1 answer

Listener or callback funcion for contextual voice commands on google glass?

Just before the contextual voice command menu appears on the screen, I would like to perform some actions. In this case, I am playing a video and I would like it to pause. As of now, I haven't been able to find anything (documentation for this is…
user3542552
  • 168
  • 8
0
votes
1 answer

Google Glass unknown for Eclipse(Android Device Chooser)

I know there are a few threads regarding the the connectivity between Google Glasses and Eclipse on Windows 7> but I think mine it's a bit different unfortunately. I followed this threads: Eclipse & adb Not Recognizing Glass as Running Android…
Ispas Claudiu
  • 1,890
  • 2
  • 28
  • 54
0
votes
1 answer

Install self-signed SSL certificate on Google Glass

I'm developing an app for Google Glass, which has to get some data over https from specific servers. These servers host a simple WCF OData service. As getting proper root CAs is not always an option, I need a way to install my own self-signed .cer…
fumpel
  • 1
0
votes
3 answers

Android Studio "applications have the same package name"

My application in Android Studio has separate components for mobile devices and for Google Glasses. When I attempt to load the mobile version onto a Nexus 10 (Android version 4.4.2) I get the following error: Applications have the same package name…
Carter
  • 1
  • 3
0
votes
1 answer

How to handle "keyDown" events that occur when options menu is opened in Google Glass app

I want to prevent users from being able to take a picture with the external camera button on Google Glass when inside my app. I am currently catching any camera button events in my main Activity by overriding the "onKeyDown" method. However, I…
0
votes
1 answer

Google Glass - Handling arbitrary voice commands

I have a Google Glass immersion that uses a CardScrollView to display a series of Cards. I have created a PanelMenu that uses contextual voice commands by following Google's documentation. I am able to jump to specific Cards using voice commands as…
0
votes
2 answers

How to start an Android Service via a URL Scheme?

My Android app start with a Service. I am looking at URL schemes. While I had no problem setting this up (data android:scheme="abc"), it appears calling "abc://" from the browser does not work, and I can't find anything in Logcat.
0
votes
1 answer

Google Glass OnActivityResult not called for intent MediaStore.ACTION_IMAGE_CAPTURE

I want to take image followed by certain operations on that image. first part is working as expected : Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(intent, REQ_TAKE_PICTURE); opens camera, take picture and say…
Shailendra Singh Rajawat
  • 8,172
  • 3
  • 35
  • 40
0
votes
1 answer

Screencast from own glassware

Is there a way to provide a video feed of what the glass is currently displaying ? I am looking for a way to do something similar to the screencast from the MyGlass app, but directing the feed to wherever I need it (probably to my server)
Mateo
  • 500
  • 4
  • 11
0
votes
2 answers

onPictureTaken never called

The code works mostly fine. The only problem is that the onPictureTaken function never called. I need to use this function to store the image to SD Card. MainActivity public class MainActivity extends Activity { //private static Camera…