Is there any way to change the background color activity through java file in android? -


I try to change background color activity via Java file but it does not work

Such as

Is there a way to change background color via a Java file? (Do not XML file)?

You can change the background of activity to drawable < / P>

using the code. This way

  getWindow () SetBackgroundDrawableResource (R.drawable.your_bg); Set  

or color as

  getWindow (). SetBackgroundDrawable (New ColorDrawable (Color.GREEN));  

Comments

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

c# - MySQL Parameterized Select Query joining tables issue -