DroidDB Tip of the Month
DroidDB® Tip for June 2014
Launching DroidDB from Your Android App
If you are a professional programmer, you may want your Android application you wrote using Eclipse and the Android SDK to launch a DroidDB application. It's actually very easy to do this.
The following Java code will launch DroidDB and open a DroidDB application
called MyApp and sets @var(0) to "MyInfo":
Intent intent;
intent = new Intent("com.syware.droiddb");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtras("parameter", "MyApp");
intent.putExtras("@var(0)", "MyInfo");
startActivity(intent);