0

这就是我的 activity_mail.xml 的启动方式,我可以在此处添加一个简单的行来添加背景图像还是还有更多内容?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" 
android:id="@+id/mainLayout">

这适用于平板电脑应用程序,我希望图像中心对齐。

提前致谢

4

1 回答 1

1

只需添加

android:background="@drawable/your_image"

并且可选地,

android:scaleType="centerInside" 

如果您想保持图像比例并在布局内。

于 2013-04-24T16:32:22.137 回答