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

Inserting Glass timeline cards using an external PHP script

I am trying to insert/update timeline cards in the Google Glass with an external PHP script. The eventual goal is for the script to be called from an Eclipse plugin every time a change is made, and update a Glass timeline card with new data from…
Will Stone
  • 15
  • 3
0
votes
1 answer

Unable to save recorded video in Google Glass XE 19.1

I am trying to record a video from within my application using the following code Intent intent = new Intent(android.provider.MediaStore.ACTION_VIDEO_CAPTURE) startActivityForResult(intent, CAPTURE_VIDEO_REQUEST_CODE); This opens the Video…
Parth Doshi
  • 4,200
  • 15
  • 79
  • 129
0
votes
0 answers

Stream video from Android phone to Google glass

I have new task in hand wherein I have to work on Google Glass POC. My main intention is to access a video file sitting in your phone and access/play it on the connected Google glass. Preferably I have to implement using JavaScript or special…
user2139676
0
votes
2 answers

Insufficient Permission in Mirror API Insert Account using PHP

I have PHP code that Google PHP Mirror API to insert user account. if(isset($_GET['userToken'])){ $userToken=$_GET['userToken']; $key = file_get_contents($key_file_location); $cred = new…
Lubna
  • 151
  • 9
0
votes
1 answer

Registering Google Glass as a device on Android Studio

I'm programming with Glass for the first time, and I'm pretty new to Android Studio as well. I can't figure out how to make Glass a device in Android Studio the way I could for my Android phone. There is precious little advice on the web about it,…
Skitterm
  • 4,257
  • 7
  • 38
  • 54
0
votes
1 answer

Android studio V0.8 cannot create new Glass Module with error "The component Glass Module has a minimum SDK level of 19"

I am working on a phone app and planning to port it to glass with some modifications. I thought creating a new Glass Module under the parent app project will save me some time and effort, since the libraries modules are already set up, and my phone…
0
votes
1 answer

Adding fixed text over cardscrollview

I was wondering if anyone knows...if I have a cardscrollview in my app, is there a way to display some sort of anchored text or anything of the sort at the top of the cards? Like say for example the user is scrolling through some images, I want to…
0
votes
1 answer

Update text of card in Google Glass

My Glass app is very simple. I have one static card and I set its text and display it in the overridden "onCreate()" method of my Activity: myCard.setText("First text"); View cardView = myCard.getView(); // Display the card we just…
MikeN
  • 3
  • 2
0
votes
0 answers

Using a service account to push cards

I'm trying to create a php page which will authenticate using a service account and will create a new timeline card for the application users. (It's working using a client ID for web sites) So I have created a service account, uploaded the key.p12…
Doron Goldberg
  • 643
  • 1
  • 9
  • 23
0
votes
0 answers

Google API (Google Glass) - public access?

I'm trying to expose a .php file which will allow external applications to post cards to users timeline (all users). My problem is that currently I can only access this page form my browser while I'm logged in to my google account. How can I make…
Doron Goldberg
  • 643
  • 1
  • 9
  • 23
0
votes
3 answers

Unable to run glassware on google glass in Eclipse

I am using Glass development kit preview(API level 19). I have created a sample app in Eclipse targeting that.Glass is been detected by device manager but this is the screen I get in eclipse when i try to run the app. I have installed the device…
Prasanna Aarthi
  • 3,439
  • 4
  • 26
  • 48
0
votes
1 answer

How does Glass and myGlass app sync the views e.g. Joining wifi

I recently downloaded the latest myGlass app and also updated the glass to XE19.1. Noticed that now the events can be fired from the device and they get executed on the glass. For example, if you are screen casting the glass onto the device, and…
Vivek
  • 3
  • 4
0
votes
1 answer

Google glass: Scroll up and down thanks to swipe_left and swipe_right

Is there a way that i could handle scroll up and down in my activities thank's to Gesture.SWIPE_RIGHT(which will trigger the scroll up action) and Gesture.SWIPE_LEFT(which will trigger the scroll down action) ? Any piece of code will be much…
0
votes
1 answer

startActivity(intent) not working in Google glass

I am developing an app for Google glass using using a Immersion Pattern. I am using start activity to switch between different tiles using below code. Intent showImageDetails = new Intent(MainActivity.this,…
0
votes
1 answer

GDK Listener forced for numeric input only?

I am developing glassware to receive a numeric value that will be queried in a database. Is there any way to utilize the Listener so that it only receives numeric input? For example, if I say "1 2 3".. I want to avoid the possibility of glass…
Nicole
  • 13
  • 1