gpt4 book ai didi

google-glass - 谷歌眼镜的HelloWorld

转载 作者:行者123 更新时间:2023-12-03 18:26:14 24 4
gpt4 key购买 nike

我正在尝试使用提供的 GDK 为 Google Glass 制作一个 HelloWorld 应用程序。

这是整个代码堆栈,我正在尝试找出编程的方法。编译不会出错,但运行会出错。

package leagueMatch;

import com.google.android.glass.timeline.LiveCard;
import com.google.android.glass.timeline.TimelineManager;
import com.luisdelarosa.helloglass.R;

import android.os.Bundle;
import android.os.IBinder;
import android.app.Activity;
import android.app.Service;
import android.content.Intent;
import android.graphics.Color;
import android.view.Menu;
import android.widget.RemoteViews;

public class MainActivity extends Service {
String blue_team, purple_team, mvp, casters;
int blue_kills, purple_kills;

private LiveCard mLiveCard;
private TimelineManager mTimelineManager;
private RemoteViews mViews;

private static final String TAG = "LeagueMatchInfo";
private static final String LIVE_CARD_ID = "leaguematch";

protected void onCreate(Bundle savedInstanceState) {
super.onCreate();
//mTimelineManager = xxxxxx;

mViews.setTextViewText(blue_kills, "Lol, Let's see if this works");
mLiveCard = mTimelineManager.createLiveCard(LIVE_CARD_ID);
mLiveCard.setViews(mViews);

mLiveCard.setDirectRenderingEnabled(true);
mLiveCard.publish(LiveCard.PublishMode.SILENT);
}

public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
return true;
}

@Override
public IBinder onBind(Intent intent) {
return null;
}
}

这不是应该推出一张卡片,上面写着“大声笑,让我们看看这是否有效?”

最佳答案

我创建了一个 Hello World project在 GitHub 上。

通过说“ ok glass, hello world ”启动应用程序,或者单击时间线上显示的Hello World 卡片。

活卡有一个选项菜单,有两个选择:

  • 打个招呼
  • 关闭应用

  • 如果这有帮助,请标记为答案。

    关于google-glass - 谷歌眼镜的HelloWorld,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20774275/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com