背景图像拉伸

时间:2010-12-03 23:42:52

标签: android background

我的布局最外面的LinearLayout上有一个背景图片。我只是做以下事情:

android:background="@drawable/home_background"

这会将图像拉伸到手机屏幕的尺寸(或更准确地说,是LinearLayout的尺寸)。

不幸的是,当用户点击EditText并显示虚拟键盘时,图像会因为LinearLayout的高度缩小而消失。我怎么能不发生这种情况?

1 个答案:

答案 0 :(得分:11)

在Androidmanifest中的

活动标签使用:

<activity
...
android:windowSoftInputMode="adjustPan" >

</activity>

有关详细信息,请查看

上的Android开发人员参考

http://developer.android.com/guide/topics/manifest/activity-element.html

祝你好运,