Hi,
You may use the following code to open Screen Cast Application:
Intent intent = new Intent("pvr.intent.action.VRSHELL");
Intent extraIntent = new Intent("android.settings.CAST_SETTINGS");
extraIntent.addCategory(Intent.CATEGORY_DEFAULT);
intent.putExtra("intent", extraIntent);
startActivity(intent);
Hope it helps you.