Change activity background from code

后端 未结 3 1900
情深已故
情深已故 2021-01-05 11:26

I have an activity with a background:



        
3条回答
  •  温柔的废话
    2021-01-05 12:15

    In java we do like this

    Give id to LinearLayout

    Then in code

    LinearLayout layout=(LinearLayout)findViewById(R.id.parentLayout);
    
    layout.setBackgroundColor(Color.BLUE);  Or
    layout.setBackgroundDrawable(d); Or
    layout.setBackgroundResource(resid);
    

提交回复
热议问题