滴水恩情 发表于 2025-4-11 08:51:09

App的欢迎页,以及启动黑屏的题目

<strong>1、在styles.xml文件中配置:
</strong>
<style name="WelcomePageStyle" parent="@style/Theme.AppCompat.Light.NoActionBar">
    <item name="android:windowBackground">@mipmap/icon_welcome_bg</item>
    <item name="android:statusBarColor" tools:targetApi="l">@color/transparent</item>
    <item name="android:windowLightStatusBar" tools:targetApi="m">false</item>
    <item name="android:windowFullscreen">true</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowIsTranslucent">true</item>
</style>
2、在清单配置文件中配置WelcomeActivity
<activity
    android:name=".WelcomeActivity"
    android:exported="true"
    android:screenOrientation="landscape"
    android:theme="@style/WelcomePageStyle">
    <intent-filter>
      <action android:name="android.intent.action.MAIN" />

      <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: App的欢迎页,以及启动黑屏的题目