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
2
votes
1 answer

libstreaming - videoQuality not being set

I am developing an app to stream live video from an android device via RTSP using the libstreaming library. I am trying to change the video quality by using the following code: private void initRtspClient() { mSession =…
Colin747
  • 4,955
  • 18
  • 70
  • 118
2
votes
2 answers

How to integrate barcode scanner into glass app

I have been struggeling with that topic for some time and have no idea how to process further. For first release I don't need even QR code, just simple one. My glass API is XE22. I have already tried to use https://github.com/dm77/barcodescanner, I…
Bartek
  • 41
  • 1
2
votes
0 answers

Custom Zoom On Google Glass, Image captured is not what preview shows

So I successfully implemented my own zoom feature on the Google Glass because right now Google did not add this feature. It looks like so: @Override public boolean onFling( MotionEvent e1, MotionEvent e2, float velocityX, float velocityY ) { …
2
votes
0 answers

How to check whether a glass is connected with phone using Bluetooth?

I am working on call functionality on Google Glass. If the glass is connected to phone then the functionality works but if the glass is not connected then the app goes in a endless loop and needs a restart. Is there any way by which I can check…
2
votes
1 answer

IllegalStateExcpetion when calling MediaCodec.configure()

I am well aware that there are a few other topics regarding this exception, but none of them seems to be the source of my problem. I'm trying to record a live video from Google Glass, but only one of the encoders seems to work (mime video/avc).…
2
votes
2 answers

Wake Google Glass' Screen to Display Current Information Based on Location

I am building an immersion app for driving that should not display anything on screen and run in the background until the driver reaches some specific location marker. Once at or near this location, based on GPS position, the screen should wake up,…
Autex
  • 307
  • 2
  • 12
2
votes
4 answers

ok glass is not displayed in contextual voice menu- google glass

Here is my code @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getWindow().requestFeature(WindowUtils.FEATURE_VOICE_COMMANDS); …
Prasanna Aarthi
  • 3,439
  • 4
  • 26
  • 48
2
votes
1 answer

How to record audio with Google Glass?

I want to record audio with Google Glass and be able to save into an audio file. I've tried with MediaStore.Audio.Media.RECORD_SOUND_ACTION intent but it doesn't work. I've also tried with RecognizerIntent.ACTION_RECOGNIZE_SPEECH intent but it…
Mikel
  • 288
  • 4
  • 14
2
votes
1 answer

Stopping auto-dim on Glass

With XE21, my Glass constantly auto-dims the screen with a live card. I am trying out the Compass sample and simply want it to stay on screen always. I did find one possible fix which didn't work for me - adding to the FrameLayout the line:…
Doug
  • 17
  • 2
2
votes
2 answers

Google Maps Library is not working in Google Glass after update to XE16

I have a Glass GDK app that uses Google Maps which works fine on XE12. But after update to XE 16 it doesn't allow me to install and gives me [INSTALL_FAILED_MISSING_SHARED_LIBRARY] , for this I found below solution by which I am able to…
2
votes
1 answer

Google Glass Crashes when trying to boot compiled zImage from glass-omap-xrr02 branch

I am trying to make some changes in the glass kernel and am following the steps in https://developers.google.com/glass/tools-downloads/system. But even when I am compiling the base kernel code from google's repository (glass-omap-xrr02 branch) and…
2
votes
2 answers

How to distribute beta apps for Google Glass

Is there an efficient way to distribute beta apps for Google Glass? Our current method is to email around apk files and then guide the tester through the shell commands... very painful. (Adb Chrome plugin helps a bit) I've searched and don't see…
aaronvargas
  • 12,189
  • 3
  • 52
  • 52
2
votes
0 answers

How to return back to my app home screen from get direction activity?

In my app i have put 2 button,first button show different location name and second different location name.When i click on one of them then i call get direction from my app like that Intent intent = new…
Nehalkumar
  • 227
  • 2
  • 15
2
votes
1 answer

Disable contextual voice command in activity

I am calling this feature : getWindow().requestFeature(WindowUtils.FEATURE_VOICE_COMMANDS); It should be easy but I can't find how hide / disable this feature once it is launch in my Activity. I would like the function to enable / disable the "Ok…
Pull
  • 2,236
  • 2
  • 16
  • 32
2
votes
1 answer

How to add another option to the share functionality of Google Glass?

I am interested to add my service into the share functionality of the Google Glass, my flow is below: 1. Take photo / Record video 2. Share with -> My service 3. the photo or video should be uploaded to my site Is this functionality possible? it is…
kimo
  • 1,864
  • 5
  • 23
  • 29