如何更改活动的背景图像

时间:2014-10-16 09:27:02

标签: android-layout android-activity

每个人都喜欢。 我是一名初学Android程序员,我想知道如何自定义它们。例如,如何为活动的背景设置图像。

1 个答案:

答案 0 :(得分:0)

将图像文件放在Android项目的drawable文件夹中,然后放在活动的xml文件中

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/myId"
    android:orientation="vertical" 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:background="@drawable/backgroundImage">   <!--specify the image here-->
</RelativeLayout>