阿神2017-04-17 11:50:57
This question is not easy to answer because Android has too many screen resolutions. Therefore, it is actually best not to use the entire image for the startup screen. This takes up more resources and is difficult to adapt to. It may be stretched, blurred, etc.
The ideal method is to use xml to define the startup page. The general startup screen includes background, logo, version, slogan and other information.
Background: Use a relatively simple picture. It is best to ensure that this picture can be stretched without affecting the vision too much, such as a solid color or gradient picture.
Logo: It is the icon and name of your app. It is relatively small,
Version: textview
can be used
Advertising slogan: You can use textview or pictures.
If you really need to use a complete picture, you can put a more general startup image in drawable-hdpi. If the picture size is full, you can choose the more general 480x800. For wide screens, such as pads, etc., you can put another one The pictures are in the drawable-sw600dp and other directories
ringa_lee2017-04-17 11:50:57
Don’t expect to cover all Android devices. Usually adapted to mainstream resolutions (800x480, 960x540, 1280x720, 1920x1080). For large screens (such as pads and TVs), you can consider an HD version of the APP. The specific decision depends on the target user group.
PHP中文网2017-04-17 11:50:57
If you run most of the current applications on an Android tablet, they will definitely lose their shape. . .
ringa_lee2017-04-17 11:50:57
[Please do not add Splash Screen to your app] (http://www.geekpark.net/read/view/206335)
[Splash Screen is the devil, don’t add it to your app!] (http://www.phonekr.com/dont-use-splash-screen-on-your-app/)
怪我咯2017-04-17 11:50:57
Look at the design of the startup image. Generally, if it is based on the screen resolution, it will occupy several megabytes of memory when loaded into the memory. So remember to use RGB565 mode, which takes up less memory than RGB8888. Generally, startup pictures are composed of several small pictures, which saves memory.