Created
July 6, 2023 16:20
-
-
Save rogergcc/a0da60effabd4b3023da36827b58a318 to your computer and use it in GitHub Desktop.
SplashScreen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
android:name=".ui.splashScreen.SplashActivity" | |
android:configChanges="keyboard|keyboardHidden|orientation|screenSize" | |
android:screenOrientation="portrait" | |
android:theme="@style/SplashTheme" | |
android:windowSoftInputMode="adjustResize" | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style name="SplashTheme" parent="Theme.AppCompat.Light.NoActionBar"> | |
<item name="android:windowBackground">@drawable/back_api16</item> | |
<item name="windowActionBar">false</item> | |
<item name="windowNoTitle">true</item> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment