Hel*_*rld 4 google-glass google-gdk
我正在尝试使用提供的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;
}
}
Run Code Online (Sandbox Code Playgroud)
难道这不应该推出一张卡片上写着"哈哈,让我们看看这是否有效?"
dis*_*ame 15
我在GitHub上创建了一个Hello World项目.
通过说" ok glass,hello world "或点击时间线上显示的Hello World卡启动应用程序.
实时卡有一个选项菜单,有两个选项:
如果有帮助,请标记为答案.
| 归档时间: |
|
| 查看次数: |
1803 次 |
| 最近记录: |