Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

is using setContentView multiple times bad while changing layouts?

Some people say that it's bad and they never say why.

and is there some other thing to change layout using button?

like image 471
Brsgamer Avatar asked Mar 06 '14 14:03

Brsgamer


2 Answers

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, but it involves re-drawing the entire layout, and this could take some time. There are a few alternatives, depending on exactly what you want:

  1. ViewAnimator: This is useful for showing a quick animation, if you want to change the view multiple times in quick succession.
  2. Fragments- Instead of re-drawing the entire view, you can switch out fragments. Each fragment is a kind of mini activity, and overall this will contain the code much better.
  3. Pass Intent Arguments- Pass information to an activity to help it set up. The first activity passes information to a common second activity, which knows how to set itself up based off of the information it receives from the first activity.

As for your specific application, here's what I would do:

  1. Each band follows a specific layout. There is only 1, or maybe a few, possible layouts.
  2. When the Band activity starts, the appropriate layout is chosen, and populated, knowing what's in there.

The Android SDK shows how to pass data from one activity to another. Just pass the data that the second activity needs from the first, using something like this:

Intent intent=new Intent(...);
intent.putExtra("Album","Some Album")
startActivity(intent);

The second activity will do this:

Intent intent=getIntent();
String albumName=intent.getExtraString("Album");
//Does something with albumName, maybe get a TextView and .setText()
like image 145
PearsonArtPhoto Avatar answered Oct 21 '22 01:10

PearsonArtPhoto


Yes this is bad, because it inflates your activity with your layout, and if your layout has a lot of views, it may take time.

To avoid that you should use a ViewAnimator, where you put all your layouts and you switch by showNext() and showPrevious(), i.e:

<ViewAnimator xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ViewAnimator"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <RelativeLayout>  </RelativeLayout>

    <RelativeLayout>  </RelativeLayout>

</ViewAnimator>

And in your code:

// Don't forget the setContentView
//
// Load the ViewAnimator and display the first layout
ViewAnimator va = (ViewAnimator) findViewById(R.id.ViewAnimator);
// Switch to the second layout
va.showNext();
// Add another layout at the third position
LinearLayout fooLayout = new LinearLayout(this);
va.addView(fooLayout, 3, new ViewGroup.LayoutParams(MATCH_PARENT, MATCH_PARENT));
like image 29
Antoine C. Avatar answered Oct 21 '22 00:10

Antoine C.