我正在尝试制作我的第一个Google Glass应用程序(如果算上Hello World项目,则为第二个:),并需要一些帮助。我创建了第一部分,结果没问题(应用程序显示在语音命令列表和“启动器”中,我可以运行它/说话)所以我很高兴我得到了这么远!我的问题是,如何将卡片发布到时间线?:
package com.test.glass.glassnotes;
import java.util.ArrayList;
import com.google.android.glass.app.Card;
import android.app.Activity;
import android.os.Bundle;
import android.speech.RecognizerIntent;
import android.view.View;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Get voice input results
ArrayList<String> voiceResults = getIntent().getExtras()
.getStringArrayList(RecognizerIntent.EXTRA_RESULTS);
String voiceString = "";
for(String str:voiceResults){
voiceString = voiceString + " " + str;
}
voiceString = voiceString.trim();
//Create card
Card card1 = new Card(this);
card1.setText(voiceString);
card1.setFootnote("GlassNotes");
View card1View = card1.toView();
// Display card
setContentView(card1View);
}
}
对于Java来说,我有点像菜鸟,所以我一直在学习...
此外,值得注意的是,我尝试创建的应用程序是一个简单的记事本应用程序,用户可以在其中说文本,并且新卡片将添加到时间轴以供将来参考,包含语音文本。我在Eclipse / ADT中使用GDK Sneak Peek进行此操作。
提前感谢您的任何和所有帮助!
答案 0 :(得分:2)
要添加发布到时间轴的卡,您需要使用https://developers.google.com/glass/develop/gdk/reference/com/google/android/glass/timeline/TimelineManager中记录的GDK TimelineManager API
例如:
mTimelineManager = TimelineManager.from(this);
mTimelineManager.insert(card);
请注意,使用卡片创建的时间轴上的卡片(静态卡片)仅保留7天(https://developers.google.com/glass/design/ui/static-cards)。