Android应用icon和闪屏splash的尺寸

icon (尺寸为px)

目录 尺寸 (width * height)
drawable 72 x 72
drawable-hdpi 72 x 72
drawable-ldpi 36 x 36
drawable-mdpi 48 x 48
drawable-xhdpi 96 x 96
drawable-xxhdpi 144 x 144
drawable-xxxhdpi 192 x 192

我查看支付宝钱包的时候,发现drawable-xxxhdpi里面的尺寸是180 x 180,不是上面标的192 x 192

而闪屏图片,它只用到了一张startclient.png  尺寸为720 * 1280(px)

 

而手机QQ应该是把资源加过密,它没有res目录,取而代之的是R目录

它的闪屏同样是720 * 1280 (px)

icon的话,我找了半天,在R/m目录下找到hcw.png这张图片,尺寸为144 x 144(px)

微信找到4种:48 x 48、72 x 72、96 x 96、144 x 144,其它尺寸暂时未找到。

 

《刀塔传奇》的设置

drawable-hdpi  72 x 72

drawable-ldpi  36 x 36

drawable-mdpi  48 x 48

drawable-xhdpi  512 x 512

 

参考链接:

http://stackoverflow.com/questions/10574363/android-splash-screen-image-sizes-to-fit-all-devices

http://appicontemplate.com/android

http://stackoverflow.com/questions/12768128/launcher-icon-size

http://androiddrawables.com/

http://romannurik.github.io/AndroidAssetStudio/index.html

时间: 2024-10-08 08:23:30

Android应用icon和闪屏splash的尺寸的相关文章

闪屏(Splash)

好久没弄ReactNative了, 写个怎样实现闪屏(Splash)的文章吧. 注意: (1) 怎样切换页面. (2) 怎样使用计时器TimerMixin. (3) 怎样使用动画效果. (4) 怎样载入Android的项目资源(图片). 1. 准备 新建项目, 加入主模块index.android.js. /* @flow */ /** * 測试 * @author wangchenlong */ 'use strict'; var React = require('react-native')

Android编程入门--简单闪屏界面

Manifest <activity android:name=".ui.activity.WelcomeActivity" android:theme="@style/SplashTheme"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android

android studio3.1 添加闪屏页面(启动欢迎界面)(例子简单无BUG)

截图 启动页的 activity_splash.xml  我用了一张图片自己添加吧 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"

android Theme启动APP闪屏处理

//1.设置背景图Theme <style name="Theme.AppStartLoad" parent="android:Theme">       <item name="android:windowBackground">@drawable/ipod_bg</item>       <item name="android:windowNoTitle">true</

U8SDK——统一闪屏解决方案

很多SDK都明确要求在游戏启动的时候,显示一张含有渠道SDK Logo的一张全屏图片,大概需要显示2至3秒的时间.像UC,百度SDK是在自己的SDK里已经自带了闪屏的功能(一般是在SDK初始化的时候).但是,还有很多其他渠道需要游戏在接入他们的SDK时,自己去实现这个闪屏功能.他们仅仅提供一张闪屏图片. 那么,在U8SDK中,我们如何去处理这个闪屏功能呢?因为U8SDK采用反编译动态打包方式,那么我们最好是选择在打渠道包的时候动态地将该渠道对应的闪屏添加到该渠道包中,同时,这套方案还必须能够适配

Android App 启动页(Splash)黑/白闪屏现象产生原因与解决办法(转)

转载: Android App 启动页(Splash)黑/白闪屏现象产生原因与解决办法   首先感谢博主分享,本文作为学习记录 惊鸿一瞥 微信的启动页,相信大家都不陌生. 不知道大家有没有发现一个现象,微信每次启动的时候,是直接进入这个启动页面. 我的意思是,很多应用,往往会先白屏停顿一下后再进入启动页面(Splash).为了印证这一点,我把手机上所有的App都点了一遍.选几个例子 如下图: 微信:  斗鱼:  斗鱼和微信是直接进入了,他们的Splash页面. 知乎:  B站:  知乎和B站要先

步步为营_Android开发课[31]_用户界面之Splash(闪屏启动)

Focus on technology, enjoy life!-- QQ:804212028 浏览链接:http://blog.csdn.net/y18334702058/article/details/44624305 主题:用户界面之Splash(闪屏启动) - 用Splash做闪屏启动界面(实例): 实现效果: APP启动全屏显示一张背景图片,2s后跳转到MainActivity. AndroidManifest.xml: (在AndroidManifest中使用android:them

1.闪屏页面(Splash)

闪屏页面(Splash) - 展示logo,公司品牌- 项目初始化- 检测版本更新- 校验程序合法性(比如:判断是否有网络,有的话才运行) 检测版本更新 在toncat中放入一个json数据用来判断版本信息 {"versionName": "2.0", "versionCode": 2, "description": "新增NB功能,赶紧体验!!!", "downloadUrl": &q

android app 闪屏

main activity package com.splash.screen; import android.app.Activity; import android.content.Intent; import android.content.res.Configuration; import android.os.Bundle; import android.os.Handler; import android.util.Log; import android.view.Window; i