ImageView3.Bitmap=LoadBitmap(File.DirAssets,"sign-info-icon.png")
ImageView2.Bitmap=LoadBitmap(File.DirAssets,"star-icon (1).png")
ImageView1.Bitmap=LoadBitmap(File.DirAssets,"facebook-icon.png")
Note that you only need to set the layout in Activity_Create.
V2.71 will be released in a week or two and will fix this issue.
Is examplea.png a very large image? Are there any messages in the logs about memory issues?
Activity_Create will be called when there is an orientation change. It will also work if you put it in Activity_Resume, however Activity_Resume is called even if the Activity is just resumed (user presses on the Home button and then returns to your app for example).But Activity_Resume handles refreshing the image from a new bitmap load each time the orientation changed. Are you saying Create is a better location for this?