The notification bar flashes in Android N when moving from one activity to another.
I remove the title bar and add a custom title bar to each activity.
The below code is used to remove title bar:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
I tried to override the transision in my...