Thursday, June 30, 2011

What to do with AndroidManifest.xml ?

30 June 2011
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" />

No comments:

Post a Comment