What on earth is wrong with TaskStackBuilder that it uses this ugly transition when starting new activities.:
    TaskStackBuilder taskStackBuilder = TaskStackBuilder.create(this)
            .addParentStack(ActivityB.class)
            .addNextIntent(new Intent(this, ActivityB.class));
    taskStackBuilder.startActivities();
This is basically standard code that google however if you run this code you will see a super ugly transition when going to ActivityB.
I guess its because its a new Task. But I dont want it to look like this is there anything that I can do ?
Thanks !
 
    