- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Glass GDK 应用程序中获取相机时出现间歇性错误。该应用程序是一个简单的应用程序,它:
11-29 19:38:16.344: E/Camera(4551): Received CAMERA_MSG_RELEASE
11-29 19:38:16.493: D/Camera-JNI(4551): android_hardware_Camera_release - context->decStrong(thiz)
11-29 19:38:16.524: E/Camera(4551): Unknown message type 8192
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testcamera"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name="com.example.testcamera.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action
android:name="com.google.android.glass.action.VOICE_TRIGGER" />
</intent-filter>
<meta-data android:name="com.google.android.glass.VoiceTrigger"
android:resource="@xml/voice_trigger" />
</activity>
<activity
android:name="com.example.testcamera.CameraActivity"
android:label="@string/app_name" />
</application>
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<trigger keyword="@string/glass_voice_trigger">
<constraints
camera="true"
network="true"
microphone="true" />
</trigger>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">TestCamera</string>
<string name="action_settings">Settings</string>
<string name="hello_world">Hello world!</string>
<string name="glass_voice_trigger">test the camera</string>
<!-- Menu item strings. -->
<string name="stop">Done</string>
<string name="tapforoptions">Tap for options</string>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/black">
<ImageView
android:id="@+id/bgPhoto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/black_bg"
android:alpha="0.5" />
<LinearLayout android:id="@+id/queryLinearLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:orientation="vertical">
<TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_marginLeft="2dp"
android:layout_height="wrap_content"
android:gravity="left"
android:textColor="#FFFFFF"
android:text="@string/hello_world" />
<TextView
android:id="@+id/text2"
android:layout_width="wrap_content"
android:layout_marginLeft="2dp"
android:layout_height="wrap_content"
android:gravity="left"
android:textColor="#FFFFFF"
android:text="@string/hello_world" />
</LinearLayout>
<LinearLayout
android:id="@+id/resultLinearLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:orientation="vertical">
<TextView
android:id="@+id/titleOfWork"
android:layout_width="wrap_content"
android:layout_marginLeft="2dp"
android:layout_height="wrap_content"
android:gravity="left"
android:textColor="#FFFFFF"
android:textSize="30sp"
android:text="@string/hello_world" />
<TextView
android:id="@+id/Singer"
android:layout_width="wrap_content"
android:layout_marginLeft="2dp"
android:layout_height="wrap_content"
android:gravity="left"
android:textColor="#FFFFFF"
android:textSize="36sp"
android:textStyle="bold"
android:text="@string/hello_world" />
</LinearLayout>
<ProgressBar
android:id="@+id/my_progressBar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
style="?android:attr/progressBarStyleHorizontal"
android:layout_gravity="bottom"
android:layout_margin="10dp"
/>
<TextView
android:id="@+id/tap_instruction"
android:layout_width="fill_parent"
android:layout_marginLeft="2dp"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_gravity="bottom"
android:textColor="#FFFFFF"
android:textSize="16sp"
android:textStyle="bold"
android:layout_margin="20dp"
android:text="@string/tapforoptions" />
</FrameLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<SurfaceView
android:id="@+id/surfaceView"
android:layout_height="match_parent"
android:layout_width="match_parent"
/>
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
package com.example.testcamera;
import java.io.File;
import com.google.android.glass.touchpad.Gesture;
import com.google.android.glass.touchpad.GestureDetector;
import android.os.Bundle;
import android.os.Handler;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Point;
import android.speech.tts.TextToSpeech;
import android.util.Log;
import android.view.Display;
import android.view.Menu;
import android.view.MenuItem;
import android.view.MotionEvent;
import android.view.View;
import android.view.WindowManager;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.ProgressBar;
import android.widget.TextView;
public class MainActivity extends Activity {
// App responds to voice trigger "test the camera", takes a picture with CameraActivity and then returns.
private static final String TAG = MainActivity.class.getSimpleName();
private static final int TAKE_PHOTO_CODE = 1;
private static final int PROGRESS_TIMEOUT = 30000; // in ms --> 10s
private static final String IMAGE_FILE_NAME = "/sdcard/ImageTest.jpg";
private boolean picTaken = false; // flag to indicate if we just returned from the picture taking intent
private String theImageFile = ""; // this holds the name of the image that was returned by the camera
private TextView text1;
private TextView text2;
private ProgressBar myProgressBar;
protected boolean mbActive;
private String inputQueryString;
private String queryCategory;
final Handler myHandler = new Handler(); // handles looking for the returned image file
private int numberOfImageFileAttempts = 0;
private String responseBody = "";
private TextToSpeech mSpeech;
private boolean readyForMenu = false;
private boolean gotImageMatch = false;
private GestureDetector mGestureDetector;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Log.v(TAG,"creating activity");
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
setContentView(R.layout.activity_main);
text1 = (TextView) findViewById(R.id.text1);
text2 = (TextView) findViewById(R.id.text2);
text1.setText("");
text2.setText("");
myProgressBar = (ProgressBar) findViewById(R.id.my_progressBar);
LinearLayout llResult = (LinearLayout) findViewById(R.id.resultLinearLayout);
TextView tvResult = (TextView) findViewById(R.id.tap_instruction);
llResult.setVisibility(View.INVISIBLE);
tvResult.setVisibility(View.INVISIBLE);
myProgressBar.setVisibility(View.INVISIBLE);
// Even though the text-to-speech engine is only used in response to a menu action, we
// initialize it when the application starts so that we avoid delays that could occur
// if we waited until it was needed to start it up
mSpeech = new TextToSpeech(this, new TextToSpeech.OnInitListener() {
@Override
public void onInit(int status) {
// Do nothing.
}
});
mGestureDetector = createGestureDetector(this);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
protected void onResume() {
super.onResume();
if (!picTaken) {
Intent intent = new Intent(this, CameraActivity.class);
intent.putExtra("imageFileName",IMAGE_FILE_NAME);
startActivityForResult(intent,1);
}
else {
// do nothing
}
}
/*
* Send generic motion events to the gesture detector
*/
@Override
public boolean onGenericMotionEvent(MotionEvent event) {
if (mGestureDetector != null) {
return mGestureDetector.onMotionEvent(event);
}
return false;
}
private GestureDetector createGestureDetector(Context context) {
GestureDetector gestureDetector = new GestureDetector(context);
//Create a base listener for generic gestures
gestureDetector.setBaseListener( new GestureDetector.BaseListener() {
@Override
public boolean onGesture(Gesture gesture) {
if (gesture == Gesture.TAP) {
// do something on tap
Log.v(TAG,"tap");
//if (readyForMenu) {
openOptionsMenu();
//}
return true;
} else if (gesture == Gesture.TWO_TAP) {
// do something on two finger tap
return true;
} else if (gesture == Gesture.SWIPE_RIGHT) {
// do something on right (forward) swipe
return true;
} else if (gesture == Gesture.SWIPE_LEFT) {
// do something on left (backwards) swipe
return true;
}
return false;
}
});
gestureDetector.setFingerListener(new GestureDetector.FingerListener() {
@Override
public void onFingerCountChanged(int previousCount, int currentCount) {
// do something on finger count changes
}
});
gestureDetector.setScrollListener(new GestureDetector.ScrollListener() {
@Override
public boolean onScroll(float displacement, float delta, float velocity) {
// do something on scrolling
return false;
}
});
return gestureDetector;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.stop:
finish();
return true;
default:
return super.onOptionsItemSelected(item);
}
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
picTaken = true;
switch(requestCode) {
case (1) : {
if (resultCode == Activity.RESULT_OK) {
// TODO Extract the data returned from the child Activity.
Log.v(TAG,"onActivityResult");
File f = new File(IMAGE_FILE_NAME);
if (f.exists()) {
Log.v(TAG,"image file from camera was found");
Bitmap b = BitmapFactory.decodeFile(IMAGE_FILE_NAME);
Log.v(TAG,"bmp width=" + b.getWidth() + " height=" + b.getHeight());
ImageView image = (ImageView) findViewById(R.id.bgPhoto);
image.setImageBitmap(b);
text1 = (TextView) findViewById(R.id.text1);
text2 = (TextView) findViewById(R.id.text2);
text1.setText("Got a picture.");
text2.setText("\nSaved successfully to " + IMAGE_FILE_NAME);
LinearLayout llResult = (LinearLayout) findViewById(R.id.resultLinearLayout);
llResult.setVisibility(View.VISIBLE);
TextView line1 = (TextView) findViewById(R.id.titleOfWork);
TextView line2 = (TextView) findViewById(R.id.Singer);
TextView tap = (TextView) findViewById(R.id.tap_instruction);
line1.setText("");
line2.setText("");
tap.setVisibility(View.VISIBLE);
}
}
else {
Log.v(TAG,"onActivityResult returned bad result code");
finish();
}
break;
}
}
}
@Override
protected void onDestroy() {
//Close the Text to Speech Library
if(mSpeech != null) {
mSpeech.stop();
mSpeech.shutdown();
mSpeech = null;
Log.d(TAG, "TTS Destroyed");
}
super.onDestroy();
}
}
package com.example.testcamera;
import java.io.BufferedOutputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.List;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Bitmap.CompressFormat;
import android.hardware.Camera;
import android.hardware.Camera.Parameters;
import android.os.Bundle;
import android.util.Log;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import android.widget.ImageView;
public class CameraActivity extends Activity implements SurfaceHolder.Callback
{
private static final String TAG = CameraActivity.class.getSimpleName();
public static final int BUFFER_SIZE = 1024 * 8;
String imageFileName = "";
//a variable to store a reference to the Image View at the main.xml file.
private ImageView iv_image;
//a variable to store a reference to the Surface View at the main.xml file
private SurfaceView sv;
//a bitmap to display the captured image
private Bitmap bmp;
//Camera variables
//a surface holder
private SurfaceHolder sHolder;
//a variable to control the camera
private Camera mCamera;
//the camera parameters
private Parameters parameters;
@Override
public void onCreate(Bundle savedInstanceState)
{
Log.v(TAG,"onCreate");
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_camera);
//get the Image View at the main.xml file
iv_image = (ImageView) findViewById(R.id.imageView);
sv = (SurfaceView) findViewById(R.id.surfaceView);
//Get a surface
sHolder = sv.getHolder();
sHolder.addCallback(this);
Bundle extras = getIntent().getExtras();
// get the image file name from the caller to save the 640x360 image
imageFileName = extras.getString("imageFileName");
}
public void surfaceChanged(SurfaceHolder arg0, int arg1, int arg2, int arg3)
{
Log.v(TAG,"surfaceChanged");
//get camera parameters
try {
parameters = mCamera.getParameters();
Log.v(TAG,"got parms");
//set camera parameters
parameters.setPreviewSize(640,360);
parameters.setPictureSize(1280,720);
//Camera.Parameters params = mCamera.getParameters();
parameters.setPreviewFpsRange(30000, 30000);
Log.v(TAG,"parms were set");
mCamera.setParameters(parameters);
mCamera.startPreview();
Log.v(TAG,"preview started");
//sets what code should be executed after the picture is taken
Camera.PictureCallback mCall = new Camera.PictureCallback()
{
public void onPictureTaken(byte[] data, Camera camera)
{
Log.v(TAG,"pictureTaken");
Log.v(TAG,"data bytes=" + data.length);
//decode the data obtained by the camera into a Bitmap
Bitmap bmp = decodeSampledBitmapFromData(data,640,360);
Log.v(TAG,"bmp width=" + bmp.getWidth() + " height=" + bmp.getHeight());
FileOutputStream outStream = null;
try{
FileOutputStream fos = new FileOutputStream(imageFileName);
final BufferedOutputStream bos = new BufferedOutputStream(fos, BUFFER_SIZE);
bmp.compress(CompressFormat.JPEG, 100, bos);
bos.flush();
bos.close();
fos.close();
} catch (FileNotFoundException e){
Log.v(TAG, e.getMessage());
} catch (IOException e){
Log.v(TAG, e.getMessage());
}
Intent resultIntent = new Intent();
// TODO Add extras or a data URI to this intent as appropriate.
resultIntent.putExtra("testString","here is my test");
setResult(Activity.RESULT_OK, resultIntent);
finish();
}
};
Log.v(TAG,"set callback");
mCamera.takePicture(null, null, mCall);
}
catch (Exception e) {
try {
mCamera.release();
Log.e(TAG,"released the camera");
}
catch (Exception ee) {
// do nothing
Log.e(TAG,"error releasing camera");
Log.e(TAG,"Exception encountered relerasing camera, exiting:" + ee.getLocalizedMessage());
}
Log.e(TAG,"Exception encountered, exiting:" + e.getLocalizedMessage());
mCamera = null;
Intent resultIntent = new Intent();
setResult(Activity.RESULT_CANCELED, resultIntent);
finish();
}
}
public static Bitmap decodeSampledBitmapFromData(byte[] data,
int reqWidth, int reqHeight) {
// First decode with inJustDecodeBounds=true to check dimensions
final BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeByteArray(data, 0, data.length,options);
options.inSampleSize = 2; // saved image will be one half the width and height of the original (image captured is double the resolution of the screen size)
// Decode bitmap with inSampleSize set
options.inJustDecodeBounds = false;
return BitmapFactory.decodeByteArray(data, 0, data.length,options);
}
public void surfaceCreated(SurfaceHolder holder)
{
Log.v(TAG,"surfaceCreated");
// The Surface has been created, acquire the camera and tell it where
// to draw the preview.
try {
mCamera = Camera.open();
Log.v(TAG,"acquired the camera");
mCamera.setPreviewDisplay(holder);
Log.v(TAG,"set surface holder for preview");
}
catch (Exception e) {
try {
mCamera.release();
Log.v(TAG,"released the camera");
}
catch (Exception ee) {
// do nothing
Log.e(TAG,"Exception encountered releasing camera, exiting:" + ee.getLocalizedMessage());
}
Log.e(TAG,"Exception encountered, exiting:" + e.getLocalizedMessage());
mCamera = null;
Intent resultIntent = new Intent();
setResult(Activity.RESULT_CANCELED, resultIntent);
finish();
}
}
public void surfaceDestroyed(SurfaceHolder holder)
{
Log.v(TAG,"surfaceDestroyed");
if (mCamera != null) {
mCamera.stopPreview();
//release the camera
mCamera.release();
//unbind the camera from this object
mCamera = null;
}
}
@Override
public void onPause()
{
Log.v(TAG,"onPause");
super.onPause();
if (mCamera != null) {
mCamera.stopPreview();
//release the camera
mCamera.release();
//unbind the camera from this object
mCamera = null;
}
}
@Override
public void onDestroy()
{
Log.v(TAG,"onDestroy");
super.onDestroy();
if (mCamera != null) {
mCamera.stopPreview();
//release the camera
mCamera.release();
//unbind the camera from this object
mCamera = null;
}
}
}
最佳答案
实际上,我刚刚查看了 Google Glass API 错误报告,并看到了其他人遇到的完全相同的问题:
https://code.google.com/p/google-glass-api/issues/detail?id=259
我确实注意到同样的事情,这与语音触发器有关。当我从滑动菜单中选择项目时,我没有看到相同的错误。
这可能可以关闭
* 后来 * 刚更新这个。我编写了一个小示例应用程序,可以重复尝试获取相机。项目在这里:https://github.com/dazza222/GlassCameraSnapshot
关于google-glass - 获取 Google Glass 相机时出现间歇性错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20295479/
这里的这个问题对 updating Google Sheets charts linked to Google slides 有一个简洁的解决方案. function onOpen() { var
我正在尝试将 Google 表单添加到 Google 类作业中,但似乎不可能。 首先,它在这里 ( https://developers.google.com/classroom/reference/
出于某种原因,无论我做什么以及我如何尝试,这个日期格式化程序都不起作用。工具提示仍然显示错误的格式。你可以试试代码here . 在代码中我必须注释掉 formatter.format(dataTabl
我目前正在使用访问 token 和刷新 token 从 Google Analytics Reporting API (v4) 中提取数据。当我致力于自动从 Google Analytics 中提取数
我已在 Google 云端硬盘中创建了一个文件夹,例如测试一下,放入3个文件 a.jpg, b.jpg, c.jpg 我希望在同一帐户下的 Google 电子表格中访问文件,例如生成图像文件的链接,可
电子表格 A 是欢迎新移民来到我们小镇的团队的主数据源。它里面有大量非常敏感的数据,不能公开,哪怕是一点点。 (我们谈论的是 child 的姓名和出生日期以及他们在哪里上学……保证电子表格 A 的安全
有没有办法在 Google 文档中编写 Google Apps 脚本以从 Google 表格中检索仅限于非空白行的范围并将这些行显示为表格? 我正在寻找一个脚本,用于使用 Google Apps 脚本
有没有办法在 Google 文档中编写 Google Apps 脚本以从 Google 表格中检索仅限于非空白行的范围并将这些行显示为表格? 我正在寻找一个脚本,用于使用 Google Apps 脚本
尝试检索存储在 google firebase 中名为条目的节点下的表单条目,并使用谷歌工作表中的脚本编辑器附加到谷歌工作表。 我已将 FirebaseApp 库添加到谷歌表脚本编辑器。然后我的代码看
是否可以将我的 Web 应用程序的登录限制为仅限 google 组中的帐户? 我不希望每个人都可以使用他们的私有(private) gmail 登录,而只能使用我的 google 组中的用户。 最佳答
我们想使用 Google 自定义搜索实现 Google 附加链接搜索框。在谷歌 documentation , 我发现我们需要包含以下代码来启用附加链接搜索框 { "@context"
我想将特定搜索词的 Google 趋势图表添加到我的 Google Data Studio 报告中,但趋势不是数据源列表中的选项。我也找不到嵌入 JavaScript 的选项。是否可以将趋势图表添加到
是否可以将文件从 Google Drive 复制到 Google Cloud Storage?我想它会非常快,因为两者都在类似的存储系统上。 我还没有看到有关无缝执行此操作的任何方法的任何信息,而无需
之间有什么区别 ga('send', 'pageview', { 'dimension1': 'data goes here' }); 和 ga('set', 'dimension1', 'da
我正在尝试记录每个博客站点作者的点击率。 ga('send', 'pageview'); (in the header with the ga code to track each page) ga(
我设置了 Google Tag Manager 和 2 个数据层变量:一个用于跟踪用户 ID,传递给 Google Analytics 以同步用户 session ,另一个用于跟踪访问者类型。 在使用
我在我们的网站上遇到多个职位发布的问题。 我们在加拿大多个地点提供工作机会。所有职位页面都包含一个“LD+JSON ”职位发布的结构化数据,基于 Google 的职位发布文档: https://dev
公司未使用 Google 套件,使用个人(消费者)帐户(甚至是 Google 帐户)违反公司政策。 需要访问 Google Analytics - 没有 Google 帐户是否可能? 谢谢 最佳答案
我想分析人们使用哪些搜索关键字在 Play 商店中找到我的应用。 那可能吗?我怎么能这样做? 最佳答案 自 2013 年 10 月起,您可以关联您的 Google Analytics(分析)和 Goo
Google Now 和 Google Keep 中基于时间和位置的提醒与 Google Calendar 事件提醒不同。是否有公共(public) API 可以访问 Now 和 Keep 中的这些事
我是一名优秀的程序员,十分优秀!