如何使用代码设置活动的背景?

时间:2012-09-22 00:18:13

标签: java android eclipse android-activity

我目前正在使用XML布局来设置我的活动背景。我怎样才能在Java代码中执行此操作?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical" 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:background="@drawable/bg" >

2 个答案:

答案 0 :(得分:2)

在致电Activity.setContentView(View)之前,请使用主View上的setBackground...()方法之一。

答案 1 :(得分:1)

为您的父RelativeLayout设置id属性。比在活动代码中通过id找到它并使用setBackgroundResource方法。