我正在寻找使用.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”是800px乘600px的图像。我在手机上注意到至少水平尺寸向内缩小,使图像失真。是否有理想的宽度::高度比例,我可以制作我的背景图像?
谢谢。
答案 0 :(得分: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);