Skip to content

Instantly share code, notes, and snippets.

@jonalter
Created September 8, 2011 20:36
Show Gist options
  • Save jonalter/1204603 to your computer and use it in GitHub Desktop.
Save jonalter/1204603 to your computer and use it in GitHub Desktop.
Android: splash screen orientation set from tiapp.xml as of Sep 8 2011 11:25 r5be876f7 1.8.0
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest>
<supports-screens android:anyDensity="false"/>
<application android:debuggable="true">
<activity android:alwaysRetainTaskState="true"
android:name=".TitestActivity"
android:configChanges="keyboardHidden|orientation"
android:screenOrientation="portrait"
android:theme="@style/Theme.Titanium">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
</android>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment