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)

1574 questions
0
votes
1 answer

Card Not Visible on Timeline

I have Created a simple Card in Google Glass and set it like this setContentView(card.toView()); When I install this app on my glass, it compiles itself for the first time, but I'm not able to see the card again if I swipe back to the timeline. I…
Dr. aNdRO
  • 1,646
  • 17
  • 28
0
votes
2 answers

How does the user launches an app on Google Glass with Mirror API

I'm trying to make a sample app on Google Glass. Currently, I do not have a device. My question: after I finish creating the app, what is the action needed to see it on the launch page? Do I need to send an API request to add the card to the user's…
Avishay Bar
  • 653
  • 1
  • 7
  • 11
0
votes
1 answer

Can I make an options menu the root of the stack?

In MainActivity I've implemented the onCreateOptionsMenu method and I'm calling openOptionsMenu() from onCreate. This all works as expected. The only issue is that the user can swipe down to close the menu which leaves them on an empty card. Swiping…
Paul Young
  • 1,431
  • 1
  • 14
  • 33
0
votes
2 answers

How to run (regular) android app on Google Glass without having a voice trigger

I wanted to share my experience since I believe many people who has a Google Glass wants to test how to install an android apk which was not designed for Google Glass. If you know other ways, please share below.
Topsakal
  • 447
  • 5
  • 11
0
votes
1 answer

How to do live streaming in google glass through android code?

How to do live streaming in google glass through android code, i am using eclipse IDE to develop android apps. I have downloaded GDK and created the project using GDK. I have browsed for live video streaming, i didnt get any blogs related to that(i…
Jems
  • 23
  • 1
  • 7
0
votes
1 answer

Google Glass Voice Recognition

What I tried to do: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ArrayList voiceResults = getIntent().getExtras() .getStringArrayList(RecognizerIntent.EXTRA_RESULTS); Card ShowDataCard = new…
Vincent Taglia
  • 174
  • 1
  • 3
  • 11
0
votes
1 answer

Glass Card.toRemoteViews() returns null

Using the Google Glass GDK, I'm trying to put together a simple app that displays / updates a live card. In my Service, I have the following method: private void publishCard(Context context) { Card updatedCard = new Card(context); …
sigmabeta
  • 1,154
  • 1
  • 12
  • 27
0
votes
1 answer

Glass GDK HttpUrlConnection Service Not Available

I have this called in my Service that creates / updates live card. URL url = new URL(url1); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); I am getting Service Not Available. The URL works just fine in browser. I have the…
sivag1
  • 4,114
  • 2
  • 24
  • 32
0
votes
1 answer

Gestures on Google Glass translated to code

In the GDK, it refers to gestures as "Gesture.SWIPE_RIGHT" and "Gesture.SWIPE_LEFT". However, I am confused because you swipe forward and backward! Does anybody know what swiping forward translates to in code, and the same for swiping…
Vincent Taglia
  • 174
  • 1
  • 3
  • 11
0
votes
1 answer

Accessing microphone from a service on Glass

I would like a service to access the microphone (and do some signal processing on it a bit like what the google music is doing to recognise songs) Is there a public API for that ? can't seem to find it :/
0
votes
1 answer

Cannot retrieve Google Credentials outside of a Servlet

We are looking to push periodic or event driven Glass Timeline updates and we're running into issues with the AuthUtil provided in the Java Glass starter project. Normally, we would just need to call the following after a user has enabled our app…
Dayel Ostraco
  • 1,673
  • 1
  • 13
  • 15
0
votes
1 answer

Google Glass GDK send SMS

Is it possible to send SMS programmatically from Glass? The use case is sending an auto generated sms message using users phone. I know this is possible with android sdk, will this work automagically on Glass?
Patrick
  • 14,618
  • 20
  • 77
  • 136
0
votes
1 answer

TextView on GLSurfaceView doesn't update properly

I've been continuing to play with the glass GDK (and enjoying it) but i've got a new problem that I think (?) is specific to glass and I'm not sure what to do.... I have a immersion running with the contentView set to a framelayout that holds a…
loghound
  • 614
  • 6
  • 12
0
votes
2 answers

How to deploy the Glassware Starter Project using Google App Engine with the Go Runtime Environment

Using the guide located here: https://developers.google.com/glass/develop/mirror/quickstart/go I attempted to register and deploy an instance of the quickstart located here https://github.com/googleglass/mirror-quickstart-go I had some errors when I…
0
votes
1 answer

Message "Camera has stopped" when using Glass GDK and Android Camera API

I wondered if anyone has tried using the standard Android Camera API (http://developer.android.com/guide/topics/media/camera.html) to control the camera in an app. I was able to get my app to work using the startActivityForResult() method, but was a…
Darren
  • 1,359
  • 11
  • 22
1 2 3
99
100