How to launch a regular Activity on Google Glass
问题 I have been looking through the github examples for google glass and my code doesn't really look very different. With the exception of launching a regular TextView , my code should theoretically work. My Activity code is: package com.helloglass; import android.os.Bundle; import android.app.Activity; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } } My