I have a layout structured as follows:
LinearLayout1
LinearLayout2
EditText
I am applying a ScaleAnimation to LinearLayout1 using a LayoutAnimationController so that all of the views in the hierarchy are scaled by the same amount.
After applying the ScaleAnimation, the views are all scaled correctly, but the EditText no longer responds to clicks that fall outside the space it originally occupied. In other words, it appears that the clickable area for the EditText does not scale along with the visual representation.
Is there a solution to this problem or I am missing before or after calling the ScaleAnimation?