通过代码改变控件背景
2017-10-18 本文已影响0人
半步天涯i
private LinearLayout linearLayout;
linearLayout = (LinearLayout)findViewById(R.id.linearLayout);
linearLayout.setBackgroundResource(R.drawable);
这样就可以在代码里修改控件的背景图片了。
private LinearLayout linearLayout;
linearLayout = (LinearLayout)findViewById(R.id.linearLayout);
linearLayout.setBackgroundResource(R.drawable);
这样就可以在代码里修改控件的背景图片了。