public class MainActivity extends ActionBarActivity {
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); this.architectView = (ArchitectView)this.findViewById(R.id.architectView); final StartupConfiguration config = new StartupConfiguration("111"); this.architectView.onCreate( config );
}
@Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.menu_main, menu); return true; }
@Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId();
//noinspection SimplifiableIfStatement if (id == R.id.action_settings) { return true; }
return super.onOptionsItemSelected(item); } }
A
Andreas Fötschl
said
over 8 years ago
Hi there!
Note that R.id.architectView refers to a the AR-view in your layout XML. Ensure it is defined and has the proper id. Please have a look at the Sample Application, which comes together with the SDK (Though currently written in Eclipse the concept stays the same). Also note that Wiktude SDK 5 will be published soon and comes with an Android Studio sample app.
Boon Foo Liew
1 person has this problem