要在Android Studio中设置背景,可以使用setBackground()
方法。以下是一个简单的代码示例:
LinearLayout linearLayout = findViewById(R.id.linear_layout);
linearLayout.setBackground(getResources().getDrawable(R.drawable.background_image));
其中,R.drawable.background_image
是你想要设置的背景图片资源的ID。可以将图片资源放在res/drawable
目录下。
这样,你就可以在Android Studio中设置背景了!