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
2 answers

Implement Google account auth in Glass using GDK

I was exploring Google Glass where I need to create events/reminders. To achieve this I need to use Google Calendar API. But to use the same I'm required to pass the users Google Account authentication. One option would be using Mirror API like…
Steve
  • 385
  • 1
  • 16
0
votes
2 answers

NoSuchMethod Exception for createLiveCard

I am learning how to use the GDK and a nice explorer shared their HelloWorld project with me (https://code.google.com/p/hello-world-google-glass/source/checkout) Unfortunately when I try to run the code I get the…
RoboCop87
  • 825
  • 1
  • 8
  • 21
0
votes
1 answer

How do I select to which users I am sending a card?

With the mirror api you are able to push cards to your subscribers. But how do you select the subscribers that should receive the card? Is it possible at all? Or is it always broadcasting? This link describes how to insert a card into the…
Subby
  • 1,997
  • 4
  • 22
  • 38
0
votes
1 answer

How to avoid scaling issues in WebView in CardScrollView in Google Glass?

I added 2 WebViews inside CardScrollView. Like this: CardScrollView XXXXXXXXXXXXXXXXXXXXX X---Web---X----Web--X X--View---X---View--X X-----1---X------2--X XXXXXXXXXXXXXXXXXXXXX I read, that it's probably discouraged, but nontheless, someone…
Ostap Andrusiv
  • 4,827
  • 1
  • 35
  • 38
0
votes
1 answer

Get Accurate Speed Readings From GDK

I'm trying to get a GPS speed from my Glass (obviously the GPS signal would be coming through the phone). Using the following code, I was able to get location data from the network, but the speed always prints as 0.0. Using the GPS, I get an error…
NickGins
  • 65
  • 1
  • 5
0
votes
1 answer

How to install the apk in Google Glass

How to install the Sample apk in Google Glass? I am new to Google Glass. I didn't have glass. I developed a sample "Hello world" application in Google Glass. I did not know how to istall the apk without Glass. I tried in Samsung s4 and Google Nexus…
0
votes
1 answer

Google Glass scan Barcode/QR code

I am trying to scan a barcode using BarcodeEye in Google Glass. I have followed the steps that mentioned. I have installed the app in Glass but when I start it throws following exception. Did I miss something ? I have check around the library…
Steve
  • 385
  • 1
  • 16
0
votes
1 answer

What's the easiest way a non-technical person and install an .apk on Glass?

I need to deliver a GDK app I'm building. Is instructing them to download the Android SDK and run adb commands the only way to side load the apps? Is there any easier way for my non-technical colleagues?
Pickles
  • 581
  • 3
  • 11
0
votes
1 answer

Scrolling Through Layouts

I have an activity with five different layouts. I want to scroll through each layout. I looked at the CardScrollView example thinking I could put each layout on a different card, but it isn't clear to me how I setup a card with a layout. I see how…
0
votes
1 answer

How to transfer big-sized video files from Google Glass, to be viewed few minutes after the capture?

I have to transfer large-sized video file from glass to a server or on a local computer, just after capture (~400Mb), to be viewed as quick as possible on the target device. I tried to use the mirror API to get the video but the upload time to…
Julian Le Calvez
  • 453
  • 7
  • 27
0
votes
1 answer

VideoView in CardScrollView Google Glass

According to Romain Guy's answer here: glsurfaceview inside a scrollview, moving but not clipping one should not use SurfaceView inside ScrollView, or ListView, etc. Since VideoView is subclass of SurfaceView, I was wondering how this applies to…
jonstaff
  • 2,672
  • 2
  • 19
  • 18
0
votes
1 answer

I can't grab single characters by voice from the user in the GDK

So I need to grab single characters from the user in google glass. This is for entering passwords, captchas, spelling user names, etc. I've tried using the sample code: private static final int SPEECH_REQUEST = 0; private void…
johnarleyburns
  • 1,532
  • 12
  • 13
0
votes
1 answer

Launching my GoogleGlass app without using Launchy

Is it possible to install and launch a native Google Glass App with the Preview GDK without having to use launchy? I'm having a hard time finding a tutorial/reference on how to do this. Thanks!
corgichu
  • 2,580
  • 3
  • 32
  • 46
0
votes
1 answer

Do Glassware Contacts created via Mirror API support GIFs

Does anyone know off hand if contact (created via Mirror API 1.1) supported animated GIFs? The documentation recommends using a PNG but I was curious if other image formats were supported.
Metablocks Corp
  • 1,645
  • 15
  • 24
0
votes
1 answer

How to intercept the fling progress in CardScrollView for GDK?

When a fling happens in a CardScrollView, I see the "zoomed out" view of a long list of cards scrolling by. This part works fine as in the code below: mCardScrollView.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() { …
johnarleyburns
  • 1,532
  • 12
  • 13