有没有办法更改所有屏幕布局的背景图片?
是的我知道你可以使用
单独为每个人做这件事LinearLayout linearLayout = (LinearLayout) findViewById(R.id.score_view);
linearLayout.setBackground(getResources().getDrawable(R.drawable.blue));
但有没有办法改变所有.xml布局文件的drawable,比如可能更改drawable名称?或者创建自定义类?
答案 0 :(得分:0)
您可以在应用主题中使用<item name="android:windowBackground">@[Your background]</item>
来更改应用的完整背景。