Android: is using setContentView multiple times bad while changing layouts?

Let’s take a look at the Android Documents: Set the activity content to an explicit view. This view is placed directly into the activity’s view hierarchy. So, setContentView will overwrite the layout, and replace it with a new one. Usually, you only want to do this once in onCreate. Theoretically, you could do it more, … Read more