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

Google glass : How to remove a livecard after publishing it?

I'm actually working on an application for Google Glass. Does anybody know how to remove a livecard once it had been published ? Thanks in advance for your help !
Bibi
  • 13
  • 3
0
votes
1 answer

Disable Google Glass Auto Upgrade

There has been a few issues caused by recent Glass upgrade to XE19.1. My application suffers the same issue. There seems to be other bugs caused by the same upgrade EyeGestures NOT working in 19.1 Is there a way we can disable the auto upgrade by…
0
votes
1 answer

Glass GDK : Contextual voice command with more than 5 items

I am using Contextual voice command, it works great with 5 items. But when I put more than 5 items, I can still use it by saying the words, but the UI doesn't show them. For example if I have : Next Back Up Down Cancel Exit I can say Exit and it…
Pull
  • 2,236
  • 2
  • 16
  • 32
0
votes
1 answer

Google Glass - Have card display image from web

Hello I am new with Google Glass and am wondering if I can display an image from the web as my background image. @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); String address =…
user3562751
  • 263
  • 1
  • 5
  • 15
0
votes
0 answers

Google Glass: Not all axes seem to work using Accelerometer

I'm trying to make a simple glassware app that displays the accelerometer data on the screen. The code I am posting works on my Android phone, but when I use it on google glass, only the Y axis seems to work correctly (looking up and down). When I…
James B
  • 447
  • 3
  • 15
0
votes
2 answers

Hello World For Google Glass

I'm trying to build a simple Hello World GDK program for Google Glass. I've looked up everywhere, but all the samples I could find used "Timeline Manager", which was removed by Google after XE 16. What I'm trying to do is to create a live card that…
0
votes
1 answer

java.lang.NoClassDefFoundError: com.google.android.glass.app.Card

I am trying to create a sample glass application using below tools - GDK Preview API 19 Java 6 Android 4.4.2 I have added an activity as below - public class HelloWorldActivity extends Activity{ @Override protected void onCreate(Bundle…
0
votes
1 answer

Glass GDK : onSensorChanged not called

I have an activity with : public class MyActivity extends Activity implements SensorEventListener, GestureDetector.BaseListener I implement the functions @Override public boolean onGenericMotionEvent(MotionEvent event) { Log.d("MOTION", "MOTION…
Pull
  • 2,236
  • 2
  • 16
  • 32
0
votes
1 answer

Import .apk file into Eclipse

I'm trying to open various .apk files in Eclipse for the purpose of viewing the source code. I'm developing for Google Glass, and I need to see how the code of the third party software I downloaded is executed. I'm able to view the code using JD-GUI…
JCoppert
  • 3
  • 1
  • 3
0
votes
1 answer

Mirror API add timeline item in offine

I have a mirror api app, and authorised users via outh and saved their access token and refresh token in database for offline use. Now I want to add timeline item to those users offline (using saved access token and refresh token). Here is my…
Karthi Ponnusamy
  • 2,031
  • 2
  • 25
  • 41
0
votes
1 answer

Unable to delay twice a textview in android on button used for camera app

So I am trying to delay the textview (tvMessage3) 2 times in my code when the button is pressed, but it doesn't work. Therefore all I see is "exiting good bye" text but not "Dog Found" text. Also I am unable to change the button text, once it is…
0
votes
1 answer

Google Glass - Disable swipe down gesture

I want to disable the option to finish the current activity with the swipe down gesture. I think we can do this in the createGestureDetector method, but how? if (gesture == Gesture.SWIPE_DOWN) { // TODO disable this gesture …
Deno Agüero
  • 519
  • 2
  • 9
  • 27
0
votes
0 answers

How to set the creator.email of a Google Glass Mirror API timeline item

I'm trying to add a SEND_MESSAGE menu command to a Google Glass timeline item as per the documentation here: https://developers.google.com/glass/v1/reference/timeline/insert SEND_MESSAGE - Initiate sending a message to the timeline item's…
Lance Nanek
  • 6,377
  • 2
  • 24
  • 19
0
votes
1 answer

Google Glass : LiveCard in cardScrollView

I am new with GDK, I am trying to show custom card using LiveCard, in a cardScrollView. Here is my code to create the cardScrollView : cardScrollView = new CardScrollView(this); LiveCard liveCard; List cardList =…
Pull
  • 2,236
  • 2
  • 16
  • 32
0
votes
1 answer

popup notifications for google glass

How do i make custom popup notifications for google glass the way it is shown in the google glass commercial. I want my service to run on the background and send timely popups only when necessary. Link for reference…