Skip to content

Instantly share code, notes, and snippets.

@dlfinis
Last active August 29, 2015 14:11
Show Gist options
  • Save dlfinis/f174568121f1d953dad7 to your computer and use it in GitHub Desktop.
Save dlfinis/f174568121f1d953dad7 to your computer and use it in GitHub Desktop.
AndroidManisfest definition of a SplashScreen
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.app.splash" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name="com.app.splash.SplashActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black.NoTitleBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.app.splash.MainActivity"
android:label="@string/app_name" />
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment