3

我正在寻找使用 .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 比例我可以制作我的背景图片?

谢谢你。

4

1 回答 1

3

你要做的是像这样设置你的xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:background="@drawable/main_background"
android:padding="25dp"
>

注意缺少layout_height...

在您的主 Activity 中,您会找到该视图,然后执行以下行:

myLinLayout.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, myLinLayout.getWidth()));

哪里myLinLayout是线性布局,你按照LayoutParams方法:

setLayoutParams(int width, int height);
于 2013-01-01T23:02:43.130 回答