@drawable/splash true._安卓盒子浏览器 启动全屏">
当前位置:   article > 正文

Android 设置秒开全屏启动屏_安卓盒子浏览器 启动全屏

安卓盒子浏览器 启动全屏

如果启动页不需要更换图片:

  1. 添加主题

 

  1. <style name="Theme.SplashTheme" parent="Theme.AppCompat.Light.NoActionBar">
  2. <item name="android:windowBackground">@drawable/splash</item>
  3. <item name="android:windowFullscreen">true</item>
  4. <item name="android:fitsSystemWindows">true</item>
  5. <item name="android:windowNoTitle">true</item>
  6. <item name="android:clipToPadding">true</item>
  7. <item name="android:windowDrawsSystemBarBackgrounds">true</item>
  8. <item name="android:windowTranslucentNavigation">true</item>
  9. <item name="android:navigationBarColor">@android:color/transparent</item>
  10. </style>
  1. 使用主题

 

  1. <activity
  2. android:name=".splash.SplashActivity"
  3. android:configChanges="orientation|keyboardHidden|screenSize"
  4. android:theme="@style/Theme.SplashTheme">
  5. <intent-filter>
  6. <action android:name="android.intent.action.MAIN"/>
  7. <category android:name="android.intent.category.LAUNCHER"/>
  8. </intent-filter>
  9. </activity>
  1. SplashActivity设置透明背景

如果启动页需要更换图片:

  1. 添加主题

 

  1. <style name="Theme.SplashActivity" parent="Theme.AppCompat.NoActionBar.FullScreen">
  2. <item name="android:windowBackground">@color/white</item>
  3. </style>
  4. <style name="Theme.AppCompat.NoActionBar.FullScreen" parent="@style/Theme.AppCompat.NoActionBar">
  5. <item name="windowNoTitle">true</item>
  6. <item name="windowActionBar">false</item>
  7. <item name="android:windowFullscreen">true</item>
  8. <item name="android:windowContentOverlay">@null</item>
  9. </style>
  1. 使用主题

 

  1. <activity
  2. android:name=".splash.SplashActivity"
  3. android:configChanges="orientation|keyboardHidden|screenSize"
  4. android:theme="@style/Theme.SplashActivity">
  5. <intent-filter>
  6. <action android:name="android.intent.action.MAIN"/>
  7. <category android:name="android.intent.category.LAUNCHER"/>
  8. </intent-filter>
  9. </activity>

这样的效果是第一屏为白屏。如果将
android:windowBackground
设置为一张启动图,白屏就替换为启动图了。然后在xml中将SplashActivity的background设置为color/transparent 就能一直显示启动图了。之后再加载新的图片也完全OK, 布局参数设置为match parent即可,或者将新图设置为SplashActivity的background。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/126290
推荐阅读
相关标签
  

闽ICP备14008679号