1

我的问题是我可以想出如何在 Android 中支持多个屏幕。我已经阅读了很多次 android 文档以及许多博客和文章:

  1. http://developer.android.com/guide/practices/screens_support.html
  2. http://mobile.tutsplus.com/tutorials/mobile-design-tutorials/how-to-get-started-in-android-app-design/
  3. http://www.androidhive.info/

但我什至无法决定如何制作适合大多数屏幕的背景图像

  • 小的
  • 普通的
  • 大的
  • 超大

与牙齿:

  • 低密度脂蛋白
  • mdpi
  • hdpi
  • xdpi
4

1 回答 1

2

首先,不推荐使用全屏图像作为背景,因为它可能会导致内存问题。即使有人需要使用全屏图像作为背景,也可以通过以下方式对其进行缩放:

  • 使用支持最大尺寸的图像
  • 将其保持在中心并在其周围添加彩色/渐变边框
  • 可以拉伸到全屏(不会保持长宽比)

如需深入讨论,请阅读:

http://vinsol.com/blog/2014/11/20/tips-for-designers-from-a-developer/

于 2014-11-20T13:18:53.740 回答