I would like to set an attribute to large amount of TextViews (above 30).
For instance - Initialize all of them and right after set attribute to insviaiable.
tv_something = findViewById(R.id.tv_something);
tv_something.setVisibility(TextView.INVISIBLE);
And after a button press (SetOnClickListner..
) change the attribute to visible
tv_something.setVisibility(TextView.VISIBLE);
What's the most efficient way to do that?