On my Galaxy Nexus, I can tap this button in system preferences to start my currently selected daydream.
final Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setClassName("com.android.systemui", "com.android.systemui.Somnambulator");
startActivity(intent);
Sample app available here.