Re: [mono-android] Open Pdf

2011-06-23 Thread jnmahi
Hi all , i am using intent to display my pdf ... i want that in my intent there will be two buttons with pdf also so that on clicking button user can move forward or backword how to achive this kind of functionlity Thanks in advance -- View this message in context: http:

Re: [mono-android] A new activity with parameters of old activity

2011-06-23 Thread david.chhang
Thank you very much, it works !!! -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/A-new-activity-with-parameters-of-old-activity-tp4514263p4517805.html Sent from the Mono for Android mailing list archive at Nabble.com. ___

[mono-android] Maintaining state

2011-06-23 Thread Dean Cleaver
According to what I've read, if I start my app, navigate through to a different screen, then press the home button to run another app, when I return to my app, it should return to where it left off? Currently, it's returning to the first screen, and my first activity is getting called (OnCreate

Re: [mono-android] Maintaining state

2011-06-23 Thread Glen Hassell
Hi, http://developer.android.com/reference/android/app/Activity.html Activity entire lifetime happens between first call to onCreate(Bundle) through to a single final call to onDestroy(). http://docs.mono-android.net/Android.App.Activity.OnSaveInstanceState(Android.OS.Bundle) Visible lifetime of ac