You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To effectively create your Android SplashScreen assets, it is important to understand the idiom and sizes used for the assets.
153
+
154
+
Android defined its assets by the image's layout and `density`.
155
+
156
+
#### Image Layout
157
+
158
+
-`land` short for landscape mode
159
+
-`port` short for portrait mode
160
+
161
+
#### `density`
162
+
163
+
The image's density refers to the number of pixels per square inch. Android, interchangeably refers to this as DPI.
164
+
165
+
Not all devices have the same pixel size so it is important to create images for all DPI to ensure that the quality of the image for each device is great.
166
+
167
+
If not all DPI images are considered, some devices might not show a SplashScreen or will use an incorrect DPI image that can result in a blurry scaled image.
Launch storyboard images are sized based on scale, idiom, and size classes. It supports all devices, and can be used with split-screen/slide-over multitasking.
0 commit comments