Android interface for multiple devices

Is there any way to make sure my Android interface will display as expected on different phones?

+4
source share
3 answers

Go to the multi-screen support developer guide . He gives you all the information on this topic.

+4
source

This will be the first stop I would recommend:

http://developer.android.com/guide/practices/screens_support.html

β€œThis document explains the screens that support the features provided by the platform and how you use it in your application. Following the practices described here, you can easily create an application that displays on all supported device screens that can be deployed to any device as one .apk . " to any device as a single .apk. "

+3
source

There are several key considerations for multiple devices:

  • Make sure your app changes orientation to phones with or without hardware keyboards.
  • Display user interface elements in relation to screen size.

In the latter case, if you declare everything using literal pixel values, there is a possibility that the screen of a particular device will be too large or too small to make everything right. However, if you do everything in size relative to the screen size, everything will always be in the right place.

+2
source

All Articles