This I want I want to achieve:
An activity starts with no ClickListener and has four textviews all with white background
I want to change th
You can achieve this by creating Animation sequences, in either XML or Java code, and triggering them in sequence. You will need to define a animation sequence with LayoutAnimationController, at the end of the animation, you can add the ClickListener.
Developer Life has a good tutorial to get you started on animations. Jeff has a two-part tutorial series on animations - part 1, part 2.
Hope this helps, indyfromoz