Call Layar Layer via Intent
Intent newIntent = new Intent(Intent.ACTION_VIEW);
newIntent.setData(Uri.parse("layar://hrsger"); // hrsger is the Layer of HRS HotelsNow
newIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
getBaseContext().startActivity(newIntent);
