How to set the background of the android application?

后端 未结 4 1001
遥遥无期
遥遥无期 2021-02-05 11:31

I want to change the background of my App\'s Activity.

Now that is available in black I want to change that with some images or themes.

4条回答
  •  感情败类
    2021-02-05 12:06

    Personally, I would try to do it in xml like Sk9 suggests, but programmatically at runtime you can do

    setBackgroundColor(int color)
    

    or

    setBackgroundResource(int resourceID)
    

    Source: http://developer.android.com/reference/android/view/View.html

提交回复
热议问题