Android Question Activity content not displaying after adding varient script

cdsincfl

Member
Licensed User
Longtime User
I have a small sqlite app that has worked well for over a year.
It originally only supported portrait mode using 320x480 scale.
The Main activity loads the data into a WebView and works fine changing the orientation.
After selecting a record the Second activity is loaded to view detail data in a WebView.
After adding a new variant for 480x320 the data in the second activity does not show in the WebView until I zoom in/out. Then the data is populated in the WebView. If I change the orientation while in the second activity the data again does not show until I zoom in/out. All of the labels and WebViews are there, just no data displayed. Added a break point in the activity_resume and during debug the app halts at the break point. When I hit F5 to continue the data is displayed as expected and all works well. If I remove the break point it stops working again.

Worked fine before so what am I missing?
 
Top