我正在寻找使用 .png 图像作为应用程序主活动屏幕背景的最佳方式。我希望能够正确安装在尽可能多的设备上。
我有什么作品,我想知道什么是可移植性的最佳实践。
这是我在 XML 中使用的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/main_background"
android:padding="25dp"
>
...other stuff like a few buttons that go on top of background
目前,文件“main_background.png”是一个 800 像素 x 600 像素的图像。我注意到我的手机至少水平尺寸向内收缩,从而扭曲了图像。是否有一个理想的 Width::Height 比例我可以制作我的背景图片?
谢谢你。