How to prevent onCreate() from being called when the orientation is changed ?
<activity name="YourActivity" android:configChanges="orientation|keyboardHidden" />
16 Aug 2010
How to allow to access internet ?
<uses-permission android:name="android.permission.INTERNET" />
How to disable orientation change ?
android:screenOrientation="nosensor"
Do not show softkeyboard on Activiry showing ?
<activity name="YourActivity" android:windowSoftInputMode="stateHidden" />