Android启动页适配

作者: TMAC_EAH | 来源:发表于2020-09-24 13:22 被阅读0次

    1.theme

    老实说我适配过好多次启动页,代码都丢失了,哈哈哈,每次都费老大劲,有的是laylist
    有的是.9图片,这回我要说的是.9图片,不能说百分百适配啊 分辨率越高越明显 只能保证图标不变形 在我看来,适配99%
    分辨率吧.
        <style name="AppTheme.Launcher" parent="Theme.AppCompat.NoActionBar">
          <!--         <item name="android:windowBackground">@drawable/layer_splash</item>-->
    <!--        <item name="android:windowBackground">@drawable/psjs</item>-->
    <item name="android:windowBackground">@drawable/psjs100</item>// .9图片
            <item name="windowNoTitle">true</item>
    <!--        <item name="android:windowFullscreen">true</item>-->
    <!--        <item name="android:windowDisablePreview">true</item>-->
            <item name="android:windowTranslucentStatus">true</item>
            <item name="android:windowTranslucentNavigation">true</item>
            <item name="colorPrimary">@color/color_3FB33D</item>
            <item name="colorPrimaryDark">@color/color_3FB33D</item>
            <item name="colorAccent">@color/color_3FB33D</item>
            <item name="android:windowAnimationStyle">@style/AnimaActivity</item><!--activity进出动画-->
        </style>
    
    启动页配置
     <activity
                android:name="....."
                android:theme="@style/AppTheme.Launcher">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
    
    
    

    2.图片,需要注意的是 .9图片制作 什么地方需要保留,什么地方需要拉满,这个有讲究,左上,右上角都拉点别忘了,图片我拉的线太小看的不真切,大概是这样意思 关于图片大小 我是用1080*1920 放在xxhdpi下


    sps.9.png

    3.重要的一点,如果集成今日头条适配方案 请取消该activity的适配,否则会出现图片抖动

    相关文章

      网友评论

        本文标题:Android启动页适配

        本文链接:https://www.haomeiwen.com/subject/udvzyktx.html