When I rotate my device, the video controls dont resize properly. I made a video of what I am talking about here: http://www.youtube.com/watch?v=FgRythmUo3A
Is there a way to "redraw" the controls?
I made this change to my manifest so I could control what happens when it rotates:
<activity android:name="Vforum" android:configChanges="orientation"></activity>
Then my java, I override the onConfigurationChanged()
method:
@Override
public void onConfigurationChanged(Configuration newConfig)
{
super.onConfigurationChanged(newConfig);
// redraw controls
}
any ideas?