我目前正在使用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" >
答案 0 :(得分:2)
在致电Activity.setContentView(View)
之前,请使用主View
上的setBackground...()
方法之一。
答案 1 :(得分:1)
为您的父RelativeLayout设置id属性。比在活动代码中通过id找到它并使用setBackgroundResource方法。