android – 活动背景改变动态

我刚刚开始开发一个
Android天气应用程序,我想知道如何自动更改活动背景.例如,在白天它应该显示白天时间或在夜晚它应该显示夜间照片.

This is the app的索尼有一个功能(如上所述)

检查屏幕截图.

最佳答案 好的信用转到SteD;所以你检查一下(初学者指南)

按照这个

//在content_main.xml中设置相对布局的ID(Android Studio)

 RelativeLayout rlayout=(RelativeLayout)findViewById(R.id.rlayout); 
if(something){Drawable drawble=getResource().getDrawable(R.drawable.your_image);rlayout.setBackgroundDrawable(drawable);}

//如果有效,请销毁upvote

点赞