1

我目前正在使用 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" >
4

2 回答 2

2

在调用之前Activity.setContentView(View)使用setBackground...()main 上的一种方法View

于 2012-09-22T00:21:04.773 回答
1

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

于 2012-09-22T00:25:01.543 回答