简体   繁体   中英

Xamarin Android on orientation change keep content

I would like to keep the same content either the orientation is vertical or horizontal. I noticed that the content initializes when the orientation change. I don' t want that. Any thoughts?

Well in your activity's attribute section add the following attributes and it should work for your ;

[Activity(....ConfigurationChanges = 
ConfigChanges.Orientation |
ConfigChanges.ScreenSize | 
ConfigChanges.KeyboardHidden)]
 public class MainActivity: AppCompatActivity

Every activity where you want this to happen you will have add this in the header attributes

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM